[Bug 1786] Fix undeclared identifiers cairo_impl64 and cairo_impl128 in int128 builds.

This commit is contained in:
Peter D. Barnes, Jr.
2014-02-05 10:58:19 -08:00
parent 1a54ac7031
commit eba6d81509

View File

@@ -813,12 +813,11 @@ Int64x64ImplTestCase::DoRun (void)
default : std::cout << "unknown!";
}
std::cout << std::endl;
if (int64x64_t::implementation == int64x64_t::cairo_impl)
{
std::cout << "cairo_impl64: " << cairo_impl64 << std::endl;
std::cout << "cairo_impl128: " << cairo_impl128 << std::endl;
}
#if defined (INT64X64_USE_CAIRO) && !defined (PYTHON_SCAN)
std::cout << "cairo_impl64: " << cairo_impl64 << std::endl;
std::cout << "cairo_impl128: " << cairo_impl128 << std::endl;
#endif
std::cout << std::endl;
}