From 11b13ee36f91db77b78ea7bc9aa3eada5a789206 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 fb7e5c4f8..c7fd8c29c 100644 --- a/src/cryptonote_core/blockchain.h +++ b/src/cryptonote_core/blockchain.h @@ -30,6 +30,9 @@ #pragma once #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 -- 2.25.1