diff options
author | arkpar <arkady.paronyan@gmail.com> | 2015-03-17 05:31:31 +0800 |
---|---|---|
committer | arkpar <arkady.paronyan@gmail.com> | 2015-03-17 05:31:31 +0800 |
commit | b16533c0f0b48a70a624d9aeeef72f4c38815925 (patch) | |
tree | c0f57a889de530087bbcc68abb51546d555da104 | |
parent | 9c842b1eea49b35d78bc5537fa14b9f3d99a025b (diff) | |
download | dexon-solidity-b16533c0f0b48a70a624d9aeeef72f4c38815925.tar dexon-solidity-b16533c0f0b48a70a624d9aeeef72f4c38815925.tar.gz dexon-solidity-b16533c0f0b48a70a624d9aeeef72f4c38815925.tar.bz2 dexon-solidity-b16533c0f0b48a70a624d9aeeef72f4c38815925.tar.lz dexon-solidity-b16533c0f0b48a70a624d9aeeef72f4c38815925.tar.xz dexon-solidity-b16533c0f0b48a70a624d9aeeef72f4c38815925.tar.zst dexon-solidity-b16533c0f0b48a70a624d9aeeef72f4c38815925.zip |
supported building with clang and GNU gold linker on linux
-rw-r--r-- | SolidityEndToEndTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SolidityEndToEndTest.cpp b/SolidityEndToEndTest.cpp index 8ccf9b3f..cfb8fc66 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; }; |