aboutsummaryrefslogtreecommitdiffstats
path: root/libdevcore/Common.h
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2019-01-19 02:01:33 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2019-01-19 02:09:26 +0800
commit6a32f7e4445372fe97c4b6a2415b90dba2deb6db (patch)
treed80631b8b050e9bbaab6c6afdb6d9363ea7a3d05 /libdevcore/Common.h
parent8c97fb1688f7d756c783c65504f400c7f5f5f7e5 (diff)
downloaddexon-solidity-6a32f7e4445372fe97c4b6a2415b90dba2deb6db.tar.gz
dexon-solidity-6a32f7e4445372fe97c4b6a2415b90dba2deb6db.tar.zst
dexon-solidity-6a32f7e4445372fe97c4b6a2415b90dba2deb6db.zip
Remove boost_multiprecision_number_compare_bug_workaround for Boost <=1.58
Diffstat (limited to 'libdevcore/Common.h')
-rw-r--r--libdevcore/Common.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/libdevcore/Common.h b/libdevcore/Common.h
index 6208424e..08757daf 100644
--- a/libdevcore/Common.h
+++ b/libdevcore/Common.h
@@ -39,26 +39,8 @@
#include <libdevcore/vector_ref.h>
-#if defined(__GNUC__)
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wunused-parameter"
-#endif // defined(__GNUC__)
-
-// See https://github.com/ethereum/libweb3core/commit/90680a8c25bfb48b24371b4abcacde56c181517c
-// See https://svn.boost.org/trac/boost/ticket/11328
-// Bob comment - perhaps we should just HARD FAIL here with Boost-1.58.00?
-// It is quite old now, and requiring end-users to use a newer Boost release is probably not unreasonable.
-#include <boost/version.hpp>
-#if (BOOST_VERSION == 105800)
- #include "boost_multiprecision_number_compare_bug_workaround.hpp"
-#endif // (BOOST_VERSION == 105800)
-
#include <boost/multiprecision/cpp_int.hpp>
-#if defined(__GNUC__)
-#pragma GCC diagnostic pop
-#endif // defined(__GNUC__)
-
#include <map>
#include <vector>
#include <functional>