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: d2c4a9d159cc8418f6761da072d7a5dee21c8efe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#ifdef new
#undef new
#endif

#include <utility>

using std::forward;
using std::make_pair;
using std::move;
using std::pair;

#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif