EnTT 4.0.0
Loading...
Searching...
No Matches
string_view.hpp
1#ifndef ENTT_STL_STRING_VIEW_HPP
2#define ENTT_STL_STRING_VIEW_HPP
3
5#if __has_include(<entt/ext/stl/string_view.hpp>)
6# include <entt/ext/stl/string_view.hpp>
7#else
8# include <string_view>
9
10namespace entt::stl {
11
12using std::string_view;
13using std::swap;
14
15} // namespace entt::stl
16#endif
18
19#endif
Custom EnTT namespace for the standard template library.
Definition entt.hpp:5