X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=hashset.h;h=d660620fe9cef6574ec15b18a2ad6e4d62f033d4;hp=7f7febc657cfb36f5de99808b2938274bab73eb9;hb=25d73096cfc14c655f94b01bb235cc5efd1d5696;hpb=c76be793b17d234cc803f89bdda90c89f57ce17e 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) :