mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
mainly style fixes/renaming
This commit is contained in:
@@ -87,7 +87,7 @@ ASTPointer<SourceUnit> Parser::parse(shared_ptr<Scanner> const& _scanner)
|
||||
}
|
||||
return nodeFactory.createNode<SourceUnit>(nodes);
|
||||
}
|
||||
catch(fatalError const& _error)
|
||||
catch(FatalError const& _error)
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
@@ -1179,7 +1179,7 @@ void Parser::parserError(string const& _description)
|
||||
void Parser::fatalParserError(string const& _description)
|
||||
{
|
||||
parserError(_description);
|
||||
BOOST_THROW_EXCEPTION(fatalError());
|
||||
BOOST_THROW_EXCEPTION(FatalError());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user