blob: dc8ca3524a2078fe1ae549c75fe01bd4667c5cb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#ifndef CM_UNORDERED_MAP_HXX
#define CM_UNORDERED_MAP_HXX
#include <cmConfigure.h>
#if defined(CMake_HAVE_CXX_UNORDERED_MAP)
#include <unordered_map>
#define CM_UNORDERED_MAP std::unordered_map
#elif defined(CMAKE_BUILD_WITH_CMAKE)
#include <cmsys/hash_map.hxx>
#define CM_UNORDERED_MAP cmsys::hash_map
#else
#include <map>
#define CM_UNORDERED_MAP std::map
#endif
#endif
|