chore(build): resolve MSVC warnings

This commit is contained in:
Adam Heinermann 2025-09-23 15:19:21 -07:00 committed by fallenoak
parent df14314ea1
commit 92b0c4778f
6 changed files with 19 additions and 10 deletions

View file

@ -27,7 +27,7 @@ TEST_CASE("SUniSGetUTF8", "[unicode]") {
int32_t chars = 0;
auto code = SUniSGetUTF8(reinterpret_cast<const uint8_t*>(string), &chars);
REQUIRE(code == -1u);
REQUIRE(code == ~0u);
REQUIRE(chars == 0);
}
}