From fdc89658420414f20cf9d842160b032030e3a4ed Mon Sep 17 00:00:00 2001 From: Beman Date: Thu, 26 Mar 2015 11:03:39 -0400 Subject: [PATCH] Some older Microsoft libraries did not have uint64_t, so use boost/cstdint.hpp for it. --- test/endian_operations_test.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/endian_operations_test.cpp b/test/endian_operations_test.cpp index cdd0872..3c3c53d 100644 --- a/test/endian_operations_test.cpp +++ b/test/endian_operations_test.cpp @@ -34,6 +34,7 @@ #include #include #include +#include #include #include #include @@ -336,7 +337,7 @@ void test_inserter_and_extractor() be::big_uint64_t bu64(0x010203040506070ULL); be::little_uint64_t lu64(0x010203040506070ULL); - uint64_t x; + boost::uint64_t x; std::stringstream ss;