diff --git a/test/unit/core/conversions_test.cpp b/test/unit/core/conversions_test.cpp index 08819b2d0..e9f758aff 100644 --- a/test/unit/core/conversions_test.cpp +++ b/test/unit/core/conversions_test.cpp @@ -6,7 +6,7 @@ #include #include #include -#include +#include #if defined(_MSC_VER) && _MSC_VER < 1900 #include @@ -283,7 +283,7 @@ SECTION("to string") { REQUIRE( val == true ); // mapnik::value hashability - using values_container = boost::unordered_map; + using values_container = std::unordered_map; values_container vc; mapnik::value val2(1); vc[val2] = 1; @@ -297,4 +297,4 @@ SECTION("to string") { } } -} \ No newline at end of file +}