mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-08-09 02:07:04 +08:00
35 lines
691 B
C++
35 lines
691 B
C++
#ifndef ENTT_STL_UTILITY_HPP
|
|
#define ENTT_STL_UTILITY_HPP
|
|
|
|
/*! @cond ENTT_INTERNAL */
|
|
#if __has_include(<entt/ext/stl/utility.hpp>)
|
|
# include <entt/ext/stl/utility.hpp>
|
|
#else
|
|
# include <utility>
|
|
|
|
namespace entt::stl {
|
|
|
|
using std::as_const;
|
|
using std::declval;
|
|
using std::exchange;
|
|
using std::forward;
|
|
using std::in_place;
|
|
using std::in_place_t;
|
|
using std::in_place_type;
|
|
using std::in_place_type_t;
|
|
using std::index_sequence;
|
|
using std::index_sequence_for;
|
|
using std::make_index_sequence;
|
|
using std::make_pair;
|
|
using std::move;
|
|
using std::pair;
|
|
using std::piecewise_construct;
|
|
using std::piecewise_construct_t;
|
|
using std::swap;
|
|
|
|
} // namespace entt::stl
|
|
#endif
|
|
/*! @endcond */
|
|
|
|
#endif
|