mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Add error condition if compiling with Boost <1.65
This commit is contained in:
parent
6a32f7e444
commit
b1d43a868c
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user