[ox/std] Fix compiler warning
Build / build (push) Successful in 1m18s

This commit is contained in:
2026-05-17 20:33:58 -05:00
parent 6cc6e9e7ed
commit 9070e6e109
+1 -1
View File
@@ -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<char>(0b1101'1111);
}
[[nodiscard]]