From 9070e6e109acf93d16faf8c9e062f8ad05765b0b Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sun, 17 May 2026 20:33:58 -0500 Subject: [PATCH] [ox/std] Fix compiler warning --- deps/oxlib/src/std/include/ox/std/strops.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/oxlib/src/std/include/ox/std/strops.hpp b/deps/oxlib/src/std/include/ox/std/strops.hpp index 33e2351a..9f943782 100644 --- a/deps/oxlib/src/std/include/ox/std/strops.hpp +++ b/deps/oxlib/src/std/include/ox/std/strops.hpp @@ -38,7 +38,7 @@ constexpr StringView substr(StringViewCR str, std::size_t const start, std::size [[nodiscard]] constexpr char toUpper(char const c) noexcept { - return c & 0b1101'1111; + return c & static_cast(0b1101'1111); } [[nodiscard]]