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: 724ef01c02ec7ff740dfb91e5b475900677fb5f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once

#ifdef new
#undef new
#endif

#include <cstdint>
#include <cstddef>

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;
using std::size_t;

#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif