From c62237e96977f11a02a1ef868d2cfe12ff42f943 Mon Sep 17 00:00:00 2001 From: Stefan Boberg Date: Fri, 3 Sep 2021 10:06:11 +0200 Subject: fix for extern template class declarations, also made integer constant in test explicitly unsigned --- zencore/string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zencore/string.cpp') diff --git a/zencore/string.cpp b/zencore/string.cpp index b6093ac2e..21ba5b204 100644 --- a/zencore/string.cpp +++ b/zencore/string.cpp @@ -534,7 +534,7 @@ TEST_CASE("niceNum") NiceNumGeneral(1000000000000000000, Buffer, kNicenum1024); CHECK(StringEquals(Buffer, "888P")); - NiceNumGeneral(10000000000000000000, Buffer, kNicenum1024); + NiceNumGeneral(10000000000000000000ull, Buffer, kNicenum1024); CHECK(StringEquals(Buffer, "8.67E")); // pow2 -- cgit v1.2.3