We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3d12ac commit acec7ffCopy full SHA for acec7ff
cmake/SetCXXStandard.cmake
@@ -1,5 +1,5 @@
1
2
-find_package(Boost 1.56.0 REQUIRED)
+find_package(Boost 1.59.0 REQUIRED)
3
if(Boost_VERSION VERSION_LESS "1.72.0")
4
set(CMAKE_CXX_STANDARD 11 CACHE INTERNAL "specifies the C++ standard whose features are requested to build this target")
5
else()
src/mfast/coder/encoder/encoder_presence_map.h
@@ -5,11 +5,11 @@
// See the file license.txt for licensing information.
6
#pragma once
7
8
-#include <boost/detail/endian.hpp>
+#include <boost/predef/other/endian.h>
9
#include "fast_ostream.h"
10
11
namespace mfast {
12
-#ifdef BOOST_BIG_ENDIAN
+#if BOOST_ENDIAN_BIG_BYTE
13
const int SMALLEST_ADDRESS_BYTE = sizeof(std::size_t) - 1;
14
#else
15
const int SMALLEST_ADDRESS_BYTE = 0;
0 commit comments