From be316d7b825f55e948b998f53fe4e44b25a3d713 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Wed, 26 Oct 2011 17:06:21 +0300 Subject: [PATCH] Warning fixes --- base/base_tests/string_utils_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/base_tests/string_utils_test.cpp b/base/base_tests/string_utils_test.cpp index fbd72d5879..b42d9bf70d 100644 --- a/base/base_tests/string_utils_test.cpp +++ b/base/base_tests/string_utils_test.cpp @@ -189,7 +189,7 @@ UNIT_TEST(to_uint64) s = "123456789101112"; TEST(strings::to_uint64(s, i), ()); - TEST_EQUAL(123456789101112UL, i, ()); + TEST_EQUAL(123456789101112ULL, i, ()); s = "labuda"; TEST(!strings::to_uint64(s, i), ()); @@ -210,7 +210,7 @@ UNIT_TEST(to_int64) s = "12345678911212"; TEST(strings::to_int64(s, i), ()); - TEST_EQUAL(12345678911212L, i, ()); + TEST_EQUAL(12345678911212LL, i, ()); s = "labuda"; TEST(!strings::to_int64(s, i), ());