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