aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGav Wood <g@ethdev.com>2015-03-17 16:24:33 +0800
committerGav Wood <g@ethdev.com>2015-03-17 16:24:33 +0800
commit323f466343e29f948ef2da5f6b379ff0d0db61c8 (patch)
treea1ad7dc87a37a41d8b0fd74e29dabf5b35cafbbc
parent6e2464487f401da2a9e9c2e05deb616b62bf8ab0 (diff)
parentb16533c0f0b48a70a624d9aeeef72f4c38815925 (diff)
downloaddexon-solidity-323f466343e29f948ef2da5f6b379ff0d0db61c8.tar.gz
dexon-solidity-323f466343e29f948ef2da5f6b379ff0d0db61c8.tar.zst
dexon-solidity-323f466343e29f948ef2da5f6b379ff0d0db61c8.zip
Merge pull request #1333 from arkpar/eth_buildc
Support for building with clang and GNU gold linker on linux
-rw-r--r--SolidityEndToEndTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/SolidityEndToEndTest.cpp b/SolidityEndToEndTest.cpp
index a07b7887..e4b55514 100644
--- a/SolidityEndToEndTest.cpp
+++ b/SolidityEndToEndTest.cpp
@@ -421,7 +421,7 @@ BOOST_AUTO_TEST_CASE(short_circuiting)
auto short_circuiting_cpp = [](u256 n) -> u256
{
- n == 0 || (n = 8) > 0;
+ (void)(n == 0 || (n = 8) > 0);
return n;
};