EnTT 4.0.0
Loading...
Searching...
No Matches
cstdint.hpp
1#ifndef ENTT_STL_CSTDINT_HPP
2#define ENTT_STL_CSTDINT_HPP
3
5#if __has_include(<entt/ext/stl/cstdint.hpp>)
6# include <entt/ext/stl/cstdint.hpp>
7#else
8# include <cstdint>
9
10namespace entt::stl {
11
12using std::uint16_t;
13using std::uint32_t;
14using std::uint64_t;
15using std::uint8_t;
16
17} // namespace entt::stl
18#endif
20
21#endif
Custom EnTT namespace for the standard template library.
Definition entt.hpp:5