Skip to content
Snippets Groups Projects
Commit 32eacfb5 authored by Jonathon Duerig's avatar Jonathon Duerig
Browse files

Quick fix. The assignment operator for SetIterator.h did not return a value....

Quick fix. The assignment operator for SetIterator.h did not return a value. This didn't cause any known current errors, but g++ 3.4.1 noticed.
parent 61609bb3
No related merge requests found
...@@ -110,6 +110,7 @@ public: ...@@ -110,6 +110,7 @@ public:
secondEnd = right.secondEnd; secondEnd = right.secondEnd;
predicate = right.predicate; predicate = right.predicate;
currentSet = right.currentSet; currentSet = right.currentSet;
return *this;
} }
void reset(T const & first, T const & second) void reset(T const & first, T const & second)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment