summaryrefslogtreecommitdiff
path: root/zenXml/zenxml/dom.h
diff options
context:
space:
mode:
Diffstat (limited to 'zenXml/zenxml/dom.h')
-rw-r--r--zenXml/zenxml/dom.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zenXml/zenxml/dom.h b/zenXml/zenxml/dom.h
index d95f5aa1..0f456822 100644
--- a/zenXml/zenxml/dom.h
+++ b/zenXml/zenxml/dom.h
@@ -153,7 +153,7 @@ public:
using reference = T&;
PtrIter(IterTy it) : it_(it) {}
- PtrIter(const PtrIter& other) : it_(other.it_) {}
+ //PtrIter(const PtrIter& other) : it_(other.it_) {}
PtrIter& operator++() { ++it_; return *this; }
PtrIter operator++(int) { PtrIter tmp(*this); operator++(); return tmp; }
inline friend bool operator==(const PtrIter& lhs, const PtrIter& rhs) { return lhs.it_ == rhs.it_; }
bgstack15