Files
Cubed/include/entt/stl/cstddef.hpp
2026-07-25 10:29:04 +08:00

22 lines
362 B
C++

#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