From ff11aa192708620de538ed8676136eb616abc74e Mon Sep 17 00:00:00 2001 From: chriseth Date: Mon, 5 Sep 2016 21:32:27 +0200 Subject: Change placeholder style. --- test/libsolidity/SolidityEndToEndTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index 006d41c2..1ecd7a2c 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -7154,7 +7154,7 @@ BOOST_AUTO_TEST_CASE(no_nonpayable_circumvention_by_modifier) char const* sourceCode = R"( contract C { modifier tryCircumvent { - if (false) _ // avoid the function, we should still not accept ether + if (false) _; // avoid the function, we should still not accept ether } function f() tryCircumvent returns (uint) { return msg.value; -- cgit