1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-06-19 19:36:41 +08:00
CMake/Source/Checks/cm_cxx11_unordered_map.cpp

7 lines
102 B
C++

#include <unordered_map>
int main() {
std::unordered_map<int, int> map;
map[0] = 0;
return 0;
}