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

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

#ifdef new
#undef new
#endif

#include <iomanip>
using std::fixed;
using std::hex;
using std::left;
using std::setfill;
using std::setprecision;
using std::setw;

#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif