SDSL 3.0.1
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
9using std::int16_t;
10using std::int32_t;
11using std::int64_t;
12using std::int8_t;
13
14using std::uint16_t;
15using std::uint32_t;
16using std::uint64_t;
17using std::uint8_t;
18
19#endif