diff options
-rw-r--r-- | libsolidity/AST.cpp | 2 | ||||
-rw-r--r-- | test/libsolidity/SolidityEndToEndTest.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libsolidity/AST.cpp b/libsolidity/AST.cpp index ae125e52..25d2ccd8 100644 --- a/libsolidity/AST.cpp +++ b/libsolidity/AST.cpp @@ -569,7 +569,7 @@ void VariableDeclaration::checkTypeRequirements() if (!constImplemented) BOOST_THROW_EXCEPTION(createTypeError( "Illegal use of \"constant\" specifier. \"constant\" " - " is not yet implemented for this type." + "is not yet implemented for this type." )); } } diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index 25b4e409..c99d295d 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -3700,7 +3700,7 @@ BOOST_AUTO_TEST_CASE(simple_constant_variables_test) BOOST_AUTO_TEST_CASE(constant_variables) { - //for now constant specifier is valid only for uint bytesXX and enums + //for now constant specifier is valid only for uint, bytesXX, string and enums char const* sourceCode = R"( contract Foo { uint constant x = 56; |