diff options
author | chriseth <c@ethdev.com> | 2016-09-06 03:32:27 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-09-06 03:32:27 +0800 |
commit | ff11aa192708620de538ed8676136eb616abc74e (patch) | |
tree | c53adab7d65d7693697e047863e497f6a557c685 /test | |
parent | 1eb7ddbb09b2ff3c65b6329962229ffcc10eaf03 (diff) | |
download | dexon-solidity-ff11aa192708620de538ed8676136eb616abc74e.tar.gz dexon-solidity-ff11aa192708620de538ed8676136eb616abc74e.tar.zst dexon-solidity-ff11aa192708620de538ed8676136eb616abc74e.zip |
Change placeholder style.
Diffstat (limited to 'test')
-rw-r--r-- | test/libsolidity/SolidityEndToEndTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |