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

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

#ifdef new
#undef new
#endif

#include <cstdint>

using std::int8_t;
using std::uint8_t;
using std::int16_t;
using std::uint16_t;
using std::int32_t;
using std::uint32_t;
using std::int64_t;
using std::uint64_t;

#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif