mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-08-09 02:07:04 +08:00
19 lines
296 B
C++
19 lines
296 B
C++
#ifndef ENTT_STL_STRING_HPP
|
|
#define ENTT_STL_STRING_HPP
|
|
|
|
/*! @cond ENTT_INTERNAL */
|
|
#if __has_include(<entt/ext/stl/string.hpp>)
|
|
# include <entt/ext/stl/string.hpp>
|
|
#else
|
|
# include <string>
|
|
|
|
namespace entt::stl {
|
|
|
|
using std::string;
|
|
|
|
} // namespace entt::stl
|
|
#endif
|
|
/*! @endcond */
|
|
|
|
#endif
|