From cd57e01f9c0ad272f850f3edc6dfdd7bd3c99b7a Mon Sep 17 00:00:00 2001 From: Beman Date: Mon, 30 Mar 2015 07:15:15 -0400 Subject: [PATCH] The boost::uint64_t fix for old msvc compilers is also needed for buffer_test.cpp --- test/buffer_test.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/buffer_test.cpp b/test/buffer_test.cpp index c9742be..a04396e 100644 --- a/test/buffer_test.cpp +++ b/test/buffer_test.cpp @@ -15,6 +15,7 @@ #include #include #include +#include #include #include @@ -114,7 +115,7 @@ namespace big_uint64_buf_t bu64(0x010203040506070ULL); little_uint64_buf_t lu64(0x010203040506070ULL); - uint64_t x; + boost::uint64_t x; std::stringstream ss;