From e71c1562cceb45359668081a25a97d65d7e66260 Mon Sep 17 00:00:00 2001 From: Aina Niemetz Date: Tue, 25 Sep 2018 17:07:00 -0700 Subject: [PATCH] examples/hashsmt/sha1_inversion: Fix includes for newer Boost version. (#2534) --- examples/hashsmt/sha1_inversion.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/hashsmt/sha1_inversion.cpp b/examples/hashsmt/sha1_inversion.cpp index 652fc4e5b..ef5191cb7 100644 --- a/examples/hashsmt/sha1_inversion.cpp +++ b/examples/hashsmt/sha1_inversion.cpp @@ -22,7 +22,13 @@ * Author: dejan */ +#include +#if BOOST_VERSION > 106700 +#include +#else #include +#endif + #include #include #include -- 2.30.2