summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/optional/CustomMap.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/optional/CustomMap.h')
-rw-r--r--cpp/test/Ice/optional/CustomMap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/optional/CustomMap.h b/cpp/test/Ice/optional/CustomMap.h
index ba097ce2d1e..863fcf5101d 100644
--- a/cpp/test/Ice/optional/CustomMap.h
+++ b/cpp/test/Ice/optional/CustomMap.h
@@ -12,7 +12,7 @@
#include <IceUtil/Config.h>
-#ifdef ICE_CPP11
+#ifdef ICE_CPP11_COMPILER
# include <unordered_map>
#else
# include <map>
@@ -21,7 +21,7 @@
namespace Test
{
-#ifdef ICE_CPP11
+#ifdef ICE_CPP11_COMPILER
template<typename K, typename V>
class CustomMap : public std::unordered_map<K, V>
{