From b16533c0f0b48a70a624d9aeeef72f4c38815925 Mon Sep 17 00:00:00 2001 From: arkpar Date: Mon, 16 Mar 2015 22:31:31 +0100 Subject: [PATCH] supported building with clang and GNU gold linker on linux --- SolidityEndToEndTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SolidityEndToEndTest.cpp b/SolidityEndToEndTest.cpp index 8ccf9b3fe..cfb8fc668 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; };