Loading...
Searching...
No Matches
Go to the documentation of this file.
38#include "tce_config.h"
40#if defined(STD_TR1_UNORDERED_MAP)
42#include <tr1/unordered_map>
44#define hash_map std::tr1::unordered_map
46#elif defined(STD_UNORDERED_MAP)
48#include <unordered_map>
50#define hash_map std::unordered_map
52#elif defined(HASHMAP_GNU_EXT)
54#include <ext/hash_map>
56using __gnu_cxx::hash_map;
58#elif defined(HASHMAP_STD)
66#warning Pretending std::map to be hash_map.
68#define hash_map std::map