Files
Cubed/include/entt/stl/array.hpp
2026-07-28 18:03:51 +08:00

20 lines
306 B
C++

#ifndef ENTT_STL_ARRAY_HPP
#define ENTT_STL_ARRAY_HPP
/*! @cond ENTT_INTERNAL */
#if __has_include(<entt/ext/stl/array.hpp>)
# include <entt/ext/stl/array.hpp>
#else
# include <array>
namespace entt::stl {
using std::array;
using std::get;
} // namespace entt::stl
#endif
/*! @endcond */
#endif