diff --git a/src/entt/stl/ios.hpp b/src/entt/stl/ios.hpp index f71f749be..a83180104 100644 --- a/src/entt/stl/ios.hpp +++ b/src/entt/stl/ios.hpp @@ -6,6 +6,8 @@ /*! @cond ENTT_INTERNAL */ namespace entt::stl { +using std::boolalpha; + } // namespace entt::stl /*! @endcond */ diff --git a/src/entt/tools/davey.hpp b/src/entt/tools/davey.hpp index d3b7ced24..27f67743e 100644 --- a/src/entt/tools/davey.hpp +++ b/src/entt/tools/davey.hpp @@ -61,7 +61,7 @@ static void present_element(const meta_any &obj, OnEntity on_entity) { } else if(type.is_arithmetic()) { if(type.info() == type_id()) { std::stringstream buffer{}; - buffer << std::boolalpha << elem.template cast(); + buffer << stl::boolalpha << elem.template cast(); ImGui::Text("%s: %s", label, buffer.str().data()); } else if(type.info() == type_id()) { ImGui::Text("%s: %c", label, elem.template cast());