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 /tests/CSGTextCache.h | |
parent | e31bb0f60312e692f5ef57fd3823e413cc8a669c (diff) | |
parent | b211fe5158160910c73397bc401fb846c45a7295 (diff) |
Merge remote branch 'upstream/master' into cakebaby
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; }; |