Welcome to mirror list, hosted at ThFree Co, Russian Federation.

unordered_map.hpp « std - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19e9588b4c212feab1c55d682195dd356b463176 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once
#include "common_defines.hpp"

#ifdef new
#undef new
#endif

#if defined(_MSC_VER) && (_MSC_VER >= 1600)
  // to avoid compilation errors on VS2010
  #define BOOST_NO_0X_HDR_TYPEINDEX
#endif

#include <boost/unordered_map.hpp>
using boost::unordered_map;
using boost::unordered_multimap;

#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif