build: add entt library

This commit is contained in:
2026-07-28 18:03:51 +08:00
parent 90273e87f2
commit 5e96c1573b
111 changed files with 24637 additions and 0 deletions

18
include/entt/stl/ios.hpp Normal file
View File

@@ -0,0 +1,18 @@
#ifndef ENTT_STL_IOS_HPP
#define ENTT_STL_IOS_HPP
/*! @cond ENTT_INTERNAL */
#if __has_include(<entt/ext/stl/ios.hpp>)
# include <entt/ext/stl/ios.hpp>
#else
# include <ios>
namespace entt::stl {
using std::boolalpha;
} // namespace entt::stl
#endif
/*! @endcond */
#endif