Files
Cubed/include/entt/stl/sstream.hpp
2026-07-28 18:03:51 +08:00

19 lines
307 B
C++

#ifndef ENTT_STL_SSTREAM_HPP
#define ENTT_STL_SSTREAM_HPP
/*! @cond ENTT_INTERNAL */
#if __has_include(<entt/ext/stl/sstream.hpp>)
# include <entt/ext/stl/sstream.hpp>
#else
# include <sstream>
namespace entt::stl {
using std::stringstream;
} // namespace entt::stl
#endif
/*! @endcond */
#endif