3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-31 23:34:55 +00:00

use new hashtable implementation in windows

This commit is contained in:
Ken McMillan 2014-02-27 17:23:19 -08:00
parent 4f06b347b3
commit acf4ad0ab6
15 changed files with 4 additions and 114 deletions

View file

@ -445,6 +445,9 @@ namespace hash_space {
: public hashtable<Element,Element,HashFun,identity<Element>,EqFun> {
public:
typedef Element value_type;
hash_set()
: hashtable<Element,Element,HashFun,identity<Element>,EqFun>(7) {}
};