From 682184ba0872c6831016bb401c423fc69c477a77 Mon Sep 17 00:00:00 2001 From: skypjack Date: Fri, 24 Apr 2026 09:08:28 +0200 Subject: [PATCH] stl: std::boolalpha --- src/entt/stl/ios.hpp | 2 ++ src/entt/tools/davey.hpp | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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());