EnTT 4.0.0
Loading...
Searching...
No Matches
concepts.hpp
1#ifndef ENTT_STL_CONCEPTS_HPP
2#define ENTT_STL_CONCEPTS_HPP
3
5#if __has_include(<entt/ext/stl/concepts.hpp>)
6# include <entt/ext/stl/concepts.hpp>
7#else
8# include <concepts>
9
10namespace entt::stl {
11
12using std::constructible_from;
13using std::default_initializable;
14using std::derived_from;
15using std::integral;
16using std::invocable;
17using std::same_as;
18using std::unsigned_integral;
19
20} // namespace entt::stl
21#endif
23
24#endif
Custom EnTT namespace for the standard template library.
Definition entt.hpp:5