summaryrefslogtreecommitdiffstats
path: root/Source/Checks/cm_cxx_unordered_map.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Checks/cm_cxx_unordered_map.cxx')
-rw-r--r--Source/Checks/cm_cxx_unordered_map.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/Checks/cm_cxx_unordered_map.cxx b/Source/Checks/cm_cxx_unordered_map.cxx
deleted file mode 100644
index be3de25..0000000
--- a/Source/Checks/cm_cxx_unordered_map.cxx
+++ /dev/null
@@ -1,7 +0,0 @@
-#include <unordered_map>
-int main()
-{
- std::unordered_map<int, int> map;
- map[0] = 0;
- return 0;
-}