Browse Source

trying to avoid win_build problems

cl-refactor
Liana Husikyan 10 years ago
parent
commit
f6b64f0dbd
  1. 2
      libsolidity/Parser.cpp

2
libsolidity/Parser.cpp

@ -284,7 +284,7 @@ ASTPointer<VariableDeclaration> Parser::parseVariableDeclaration(VarDeclParserOp
if (_options.allowEmptyName && m_scanner->getCurrentToken() != Token::IDENTIFIER)
{
identifier = make_shared<ASTString>("");
solAssert(!!type, "");
solAssert(type != nullptr, "");
nodeFactory.setEndPositionFromNode(type);
}
else

Loading…
Cancel
Save