diff options
Diffstat (limited to 'tests/CSGTextCache.h')
-rw-r--r-- | tests/CSGTextCache.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/CSGTextCache.h b/tests/CSGTextCache.h index 57a6972..62f26ce 100644 --- a/tests/CSGTextCache.h +++ b/tests/CSGTextCache.h @@ -1,9 +1,9 @@ #ifndef CSGTEXTCACHE_H_ #define CSGTEXTCACHE_H_ -#include "myqhash.h" #include "Tree.h" #include <string> +#include <boost/unordered_map.hpp> using std::string; @@ -20,7 +20,7 @@ public: void clear(); private: - QHash<string, string> cache; + boost::unordered_map<string, string> cache; const Tree &tree; }; |