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

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

#ifdef new
#undef new
#endif

#include <utility>
using std::pair;
using std::make_pair;
using std::move;
using std::forward;

#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif