EnTT 4.0.0
Loading...
Searching...
No Matches
utility.hpp
1#ifndef ENTT_STL_UTILITY_HPP
2#define ENTT_STL_UTILITY_HPP
3
5#if __has_include(<entt/ext/stl/utility.hpp>)
6# include <entt/ext/stl/utility.hpp>
7#else
8# include <utility>
9
10namespace entt::stl {
11
12using std::as_const;
13using std::declval;
14using std::exchange;
15using std::forward;
16using std::in_place;
17using std::in_place_t;
18using std::in_place_type;
19using std::in_place_type_t;
20using std::index_sequence;
21using std::index_sequence_for;
22using std::make_index_sequence;
23using std::make_pair;
24using std::move;
25using std::pair;
26using std::piecewise_construct;
27using std::piecewise_construct_t;
28using std::swap;
29
30} // namespace entt::stl
31#endif
33
34#endif
Custom EnTT namespace for the standard template library.
Definition entt.hpp:5