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

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

#ifdef new
#undef new
#endif

#include <tuple>

using std::tuple;
using std::make_tuple;
//using std::get; // "get" is very common name, use "get" member function

#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif