github.com/platonnetwork/platon-go@v0.7.6/cases/tool/win/bls_win/include/cybozu/unordered_map.hpp (about)

     1  #pragma once
     2  
     3  #include <cybozu/inttype.hpp>
     4  
     5  #ifdef CYBOZU_USE_BOOST
     6  	#include <boost/unordered_map.hpp>
     7  #elif (CYBOZU_CPP_VERSION >= CYBOZU_CPP_VERSION_CPP11) || (defined __APPLE__)
     8  	#include <unordered_map>
     9  #elif (CYBOZU_CPP_VERSION == CYBOZU_CPP_VERSION_TR1)
    10  	#include <list>
    11  	#include <tr1/unordered_map>
    12  #endif
    13