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.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Checks/cm_cxx11_unordered_map.cpp b/Source/Checks/cm_cxx11_unordered_map.cpp
index beeb31b..be3de25 100644
--- a/Source/Checks/cm_cxx11_unordered_map.cpp
+++ b/Source/Checks/cm_cxx11_unordered_map.cpp
@@ -1,5 +1,6 @@
#include <unordered_map>
-int main() {
+int main()
+{
std::unordered_map<int, int> map;
map[0] = 0;
return 0;