Add error condition if compiling with Boost <1.65

This commit is contained in:
Alex Beregszaszi
2019-01-18 18:13:59 +00:00
parent 6a32f7e444
commit b1d43a868c
+5
View File
@@ -39,6 +39,11 @@
#include <libdevcore/vector_ref.h>
#include <boost/version.hpp>
#if (BOOST_VERSION < 106500)
#error "Unsupported Boost version. At least 1.65 required."
#endif
#include <boost/multiprecision/cpp_int.hpp>
#include <map>