diff options
author | chriseth <c@ethdev.com> | 2015-11-26 21:47:28 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-11-26 21:47:28 +0800 |
commit | e06768e8b580d009b9a9905f70ae2d8814699115 (patch) | |
tree | 1eb3bec6140d9b2e1ee57f62343dbc9c70d84c78 /libsolidity/parsing/Parser.cpp | |
parent | 6a2a946200f3806d5daefa0220002ae934ea0ee3 (diff) | |
download | dexon-solidity-e06768e8b580d009b9a9905f70ae2d8814699115.tar.gz dexon-solidity-e06768e8b580d009b9a9905f70ae2d8814699115.tar.zst dexon-solidity-e06768e8b580d009b9a9905f70ae2d8814699115.zip |
Fix MSVC errors and warnings.
Diffstat (limited to 'libsolidity/parsing/Parser.cpp')
-rw-r--r-- | libsolidity/parsing/Parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/parsing/Parser.cpp b/libsolidity/parsing/Parser.cpp index c703ef27..2d4ca43e 100644 --- a/libsolidity/parsing/Parser.cpp +++ b/libsolidity/parsing/Parser.cpp @@ -88,7 +88,7 @@ ASTPointer<SourceUnit> Parser::parse(shared_ptr<Scanner> const& _scanner) } return nodeFactory.createNode<SourceUnit>(nodes); } - catch (FatalError const& _error) + catch (FatalError const&) { if (m_errors.empty()) throw; // Something is weird here, rather throw again. |