diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2011-11-21 23:35:13 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2011-11-21 23:35:13 (GMT) |
commit | 4843022bf4755d7fafe58faee430a6f62f51ca8f (patch) | |
tree | 34ce84fbfdbfb720b4aae4ae575f296341bbccab /src/PolySetCache.h | |
parent | e31bb0f60312e692f5ef57fd3823e413cc8a669c (diff) | |
parent | b211fe5158160910c73397bc401fb846c45a7295 (diff) |
Merge remote branch 'upstream/master' into cakebaby
Diffstat (limited to 'src/PolySetCache.h')
-rw-r--r-- | src/PolySetCache.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/PolySetCache.h b/src/PolySetCache.h index d1efeb7..d241fad 100644 --- a/src/PolySetCache.h +++ b/src/PolySetCache.h @@ -1,8 +1,7 @@ #ifndef POLYSETCACHE_H_ #define POLYSETCACHE_H_ -#include "myqhash.h" -#include <QCache> +#include "cache.h" #include "memory.h" class PolySetCache @@ -28,7 +27,7 @@ private: ~cache_entry() { } }; - QCache<std::string, cache_entry> cache; + Cache<std::string, cache_entry> cache; }; #endif |