X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=src%2FCollections%2Fhashset.h;h=05bb7af2b42edaa8329b60e97840e790de9d1245;hb=250304ccf75e2f6f6544022234dd5ad3ca7adbb2;hp=86cbce90530034c52b19364a68426b1588dc521a;hpb=bdb737849a5e0a2620e049dabfc0ba01f4ab23bb;p=satune.git diff --git a/src/Collections/hashset.h b/src/Collections/hashset.h index 86cbce9..05bb7af 100644 --- a/src/Collections/hashset.h +++ b/src/Collections/hashset.h @@ -30,6 +30,11 @@ public: { } + SetIterator(SetIterator *s) : curr(s->curr), + last(s->last), + set(s->set) { + } + /** Override: new operator */ void *operator new(size_t size) { return ourmalloc(size);