1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-06-28 06:58:00 +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;
}