From 15ea77ded54ad0779dcbdca352cbcd23bd5ae070 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Thu, 8 Sep 2016 21:14:08 -0700 Subject: [PATCH] remove last BIGINT usage in tests --- test/unit/core/conversions_test.cpp | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/test/unit/core/conversions_test.cpp b/test/unit/core/conversions_test.cpp index 43592af01..4dffe1209 100644 --- a/test/unit/core/conversions_test.cpp +++ b/test/unit/core/conversions_test.cpp @@ -249,7 +249,6 @@ SECTION("to string") { REQUIRE( out == "4294967295" ); out.clear(); -#ifdef BIGINT // long long to_string(out,mapnik::value_integer(-0)); REQUIRE( out == "0" ); @@ -262,13 +261,7 @@ SECTION("to string") { to_string(out,mapnik::value_integer(9223372036854775807)); REQUIRE( out == "9223372036854775807" ); out.clear(); -#else - #ifdef _MSC_VER - #pragma NOTE("BIGINT not defined so skipping large number conversion tests") - #else - #warning BIGINT not defined so skipping large number conversion tests - #endif -#endif + // bool to_string(out, true); REQUIRE( out == "true" );