supported building with clang and GNU gold linker on linux

This commit is contained in:
arkpar 2015-03-16 22:31:31 +01:00
parent 9c842b1eea
commit b16533c0f0

View File

@ -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;
};