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

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

#ifdef new
#undef new
#endif

#if defined(DEBUG) && (defined(OMIM_OS_LINUX) || defined(OMIM_OS_MAC))
  #include <debug/set>
#else
  #include <set>
#endif
using std::set;

#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif