diff options
Diffstat (limited to 'libbuild2/utility.hxx')
-rw-r--r-- | libbuild2/utility.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libbuild2/utility.hxx b/libbuild2/utility.hxx index 3ffc7b2..4cfdf15 100644 --- a/libbuild2/utility.hxx +++ b/libbuild2/utility.hxx @@ -4,7 +4,6 @@ #ifndef LIBBUILD2_UTILITY_HXX #define LIBBUILD2_UTILITY_HXX -#include <map> #include <tuple> // make_tuple() #include <memory> // make_shared() #include <string> // to_string() @@ -566,7 +565,7 @@ namespace build2 } private: - std::map<string, T> cache_; + map<string, T> cache_; mutable mutex mutex_; }; |