The boost::uint64_t fix for old msvc compilers is also needed for buffer_test.cpp

This commit is contained in:
Beman
2015-03-30 07:15:15 -04:00
parent f0f2505f9b
commit cd57e01f9c

View File

@ -15,6 +15,7 @@
#include <boost/endian/buffers.hpp>
#include <boost/detail/lightweight_main.hpp>
#include <boost/core/lightweight_test.hpp>
#include <boost/cstdint.hpp>
#include <iostream>
#include <sstream>
@ -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;