From 07442a60593a662161139947f6fbf29265fc8a5f Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Sun, 16 Aug 2020 16:14:04 +0000 Subject: [PATCH] Fix build with Boost 1.74 Thanks iDunk for testing --- src/cryptonote_core/blockchain.h | 3 +++ src/wallet/wallet2.h | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/cryptonote_core/blockchain.h b/src/cryptonote_core/blockchain.h index 703dd6400..2497b8781 100644 --- a/src/cryptonote_core/blockchain.h +++ b/src/cryptonote_core/blockchain.h @@ -31,6 +31,9 @@ #pragma once #include #include +#if BOOST_VERSION >= 107400 +#include +#endif #include #include #include diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 712f91613..afb363b22 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -34,6 +34,9 @@ #include #include +#if BOOST_VERSION >= 107400 +#include +#endif #include #include #include