diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-08-16 16:14:04 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-08-16 16:23:26 +0000 |
commit | 07442a60593a662161139947f6fbf29265fc8a5f (patch) | |
tree | 6423b2a2d7393cc3c54a359f8827f11c5f7fbbfe /src/wallet | |
parent | Merge pull request #6354 (diff) | |
download | monero-07442a60593a662161139947f6fbf29265fc8a5f.tar.xz |
Fix build with Boost 1.74
Thanks iDunk for testing
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/wallet2.h | 3 |
1 files changed, 3 insertions, 0 deletions
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 <boost/program_options/options_description.hpp> #include <boost/program_options/variables_map.hpp> +#if BOOST_VERSION >= 107400 +#include <boost/serialization/library_version_type.hpp> +#endif #include <boost/serialization/list.hpp> #include <boost/serialization/vector.hpp> #include <boost/serialization/deque.hpp> |