Go to the documentation of this file.
8 #if __cplusplus < 201103L
9 # define constexpr const
19 # if __GNUC_PREREQ(4, 0)
20 # include <tr1/unordered_map>
21 # include <tr1/unordered_set>
24 using std::tr1::unordered_map;
25 using std::tr1::unordered_set;
30 # define HASH_NS_ENTER namespace tr1 {
31 # define HASH_NS_EXIT }
33 # error "GCC does not have hash types before the version 4.0"
36 #else // Use C++11 STL types
37 # include <unordered_map>
38 # include <unordered_set>