aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/tangerine-network/mcl/include/cybozu/unordered_map.hpp
blob: 89f8f87744bf1b3deff9c0d0e0386a2c90675a7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <cybozu/inttype.hpp>

#ifdef CYBOZU_USE_BOOST
    #include <boost/unordered_map.hpp>
#elif (CYBOZU_CPP_VERSION >= CYBOZU_CPP_VERSION_CPP11) || (defined __APPLE__)
    #include <unordered_map>
#elif (CYBOZU_CPP_VERSION == CYBOZU_CPP_VERSION_TR1)
    #include <list>
    #include <tr1/unordered_map>
#endif