diff options
Diffstat (limited to 'src/support')
-rw-r--r-- | src/support/dom/document_cache.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/support/dom/document_cache.h b/src/support/dom/document_cache.h index 4447a18..287a316 100644 --- a/src/support/dom/document_cache.h +++ b/src/support/dom/document_cache.h @@ -1,7 +1,7 @@ #ifndef INPUTXSLT_SRC_SUPPORT_DOM_DOCUMENT_CACHE_H_ #define INPUTXSLT_SRC_SUPPORT_DOM_DOCUMENT_CACHE_H_ -#include <map> +#include <unordered_map> #include <string> #include <memory> @@ -16,7 +16,7 @@ class DomDocumentCache { item* get(const std::string&); private: - std::map<std::string, std::unique_ptr<item>> map_; + std::unordered_map<std::string, std::unique_ptr<item>> map_; }; |