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: e6b9fb90f1d1bb67df67e165fe9690b542e14b55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
#include "common_defines.hpp"

#ifdef new
#undef new
#endif

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

#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif