mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-08-08 17:57:02 +08:00
build: add EnTT library
This commit is contained in:
21
include/entt/stl/cstdint.hpp
Normal file
21
include/entt/stl/cstdint.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef ENTT_STL_CSTDINT_HPP
|
||||
#define ENTT_STL_CSTDINT_HPP
|
||||
|
||||
/*! @cond ENTT_INTERNAL */
|
||||
#if __has_include(<entt/ext/stl/cstdint.hpp>)
|
||||
# include <entt/ext/stl/cstdint.hpp>
|
||||
#else
|
||||
# include <cstdint>
|
||||
|
||||
namespace entt::stl {
|
||||
|
||||
using std::uint16_t;
|
||||
using std::uint32_t;
|
||||
using std::uint64_t;
|
||||
using std::uint8_t;
|
||||
|
||||
} // namespace entt::stl
|
||||
#endif
|
||||
/*! @endcond */
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user