Fix style of "const".

This commit is contained in:
chriseth
2019-02-13 16:34:53 +01:00
parent dbb5438fed
commit 17ea467e5b
11 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -544,7 +544,7 @@ BOOST_AUTO_TEST_CASE(keyword_is_reserved)
"unchecked"
};
for (const auto& keyword: keywords)
for (auto const& keyword: keywords)
{
auto text = std::string("contract ") + keyword + " {}";
CHECK_PARSE_ERROR(text.c_str(), string("Expected identifier but got reserved keyword '") + keyword + "'");