Index: source/simulation2/components/tests/test_HierPathfinder.h =================================================================== --- source/simulation2/components/tests/test_HierPathfinder.h +++ source/simulation2/components/tests/test_HierPathfinder.h @@ -92,11 +92,11 @@ void test_reachability_and_update() { - pathClassMask = { + pathClassMask = std::map{ { "1", 1 }, { "2", 2 }, }; - nonPathClassMask = { + nonPathClassMask = std::map{ { "3", 4 } }; @@ -249,11 +249,11 @@ } void test_passability() { - pathClassMask = { + pathClassMask = std::map{ { "1", 1 }, { "2", 2 }, }; - nonPathClassMask = { + nonPathClassMask = std::map{ { "3", 4 } };