CMake/Source/Checks/cm_cxx_unordered_map.cxx
Daniel Pfeifer ea5477e43d Make C++ feature checks extensible
Turn the feature check for cxx11_unordered_map into a function such that
we can use it for other features as well.  Drop the 11 suffix, as we may
want to check features from other standards.
2016-06-27 10:37:40 -04:00

8 lines
102 B
C++

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