X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=hashset.h;h=d660620fe9cef6574ec15b18a2ad6e4d62f033d4;hp=7f7febc657cfb36f5de99808b2938274bab73eb9;hb=251ac4b4bf3a9f2d3cfacc1e6618200ca1c431ac;hpb=91579dadd25579b9aa7e1dd7a537892c9b1e9311 diff --git a/hashset.h b/hashset.h index 7f7febc6..d660620f 100644 --- a/hashset.h +++ b/hashset.h @@ -18,12 +18,10 @@ struct LinkNode { LinkNode<_Key> *next; }; -template +template class HashSet; -template, bool (*equals)(_Key, _Key) = default_equals<_Key> > +template, bool (*equals)(_Key, _Key) = default_equals<_Key> > class HSIterator { public: HSIterator(LinkNode<_Key> *_curr, HashSet <_Key, _KeyInt, _Shift, _malloc, _calloc, _free, hash_function, equals> * _set) :