Skip to content
Snippets Groups Projects
Commit 965e0e64 authored by Philippe Canal's avatar Philippe Canal
Browse files

Clarify missing operator= (cov 35389)

git-svn-id: http://root.cern.ch/svn/root/trunk@43211 27541ba8-7e3a-0410-8455-c3a389f83636
parent 7ecf6df2
No related branches found
No related tags found
No related merge requests found
......@@ -101,6 +101,9 @@ private:
char fRawEndBuffer[TVirtualCollectionProxy::fgIteratorArenaSize];
struct TInternalIterator {
private:
TInternalIterator &operator=(const TInternalIterator&); // intentionally not implemented
public:
TInternalIterator() : fCopy(0),fDelete(0),fNext(0),fIter(0) {}
TInternalIterator(const TInternalIterator &source) : fCopy(source.fCopy),fDelete(source.fDelete),fNext(source.fNext),fIter(0) {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment