mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-08-09 02:07:04 +08:00
build: add entt library
This commit is contained in:
21
include/entt/stl/cstddef.hpp
Normal file
21
include/entt/stl/cstddef.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef ENTT_STL_CSTDDEF_HPP
|
||||
#define ENTT_STL_CSTDDEF_HPP
|
||||
|
||||
/*! @cond ENTT_INTERNAL */
|
||||
#if __has_include(<entt/ext/stl/cstddef.hpp>)
|
||||
# include <entt/ext/stl/cstddef.hpp>
|
||||
#else
|
||||
# include <cstddef>
|
||||
|
||||
namespace entt::stl {
|
||||
|
||||
using std::byte;
|
||||
using std::nullptr_t;
|
||||
using std::ptrdiff_t;
|
||||
using std::size_t;
|
||||
|
||||
} // namespace entt::stl
|
||||
#endif
|
||||
/*! @endcond */
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user