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

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

#ifdef new
#undef new
#endif

#include <functional>
using std::less;
using std::greater;
using std::equal_to;
using std::hash;

#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif