SDSL  3.0.0
Succinct Data Structure Library
uintx_t.hpp
Go to the documentation of this file.
1 // Copyright (c) 2016, the SDSL Project Authors. All rights reserved.
2 // Please see the AUTHORS file for details. Use of this source code is governed
3 // by a BSD license that can be found in the LICENSE file.
4 #ifndef INCLUDED_SDSL_UINTX_T
5 #define INCLUDED_SDSL_UINTX_T
6 
7 #include <cstdint>
8 
9 using std::int16_t;
10 using std::int32_t;
11 using std::int64_t;
12 using std::int8_t;
13 
14 using std::uint16_t;
15 using std::uint32_t;
16 using std::uint64_t;
17 using std::uint8_t;
18 
19 #endif