remove last BIGINT usage in tests

This commit is contained in:
Dane Springmeyer 2016-09-08 21:14:08 -07:00
parent 89f667fe6e
commit 15ea77ded5

View file

@ -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" );