diff options
Diffstat (limited to 'solc')
-rw-r--r-- | solc/CommandLineInterface.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp index a1f5fd66..e3c7620e 100644 --- a/solc/CommandLineInterface.cpp +++ b/solc/CommandLineInterface.cpp @@ -494,7 +494,11 @@ bool CommandLineInterface::processInput() if (!m_compiler->compile(optimize, runs)) { for (auto const& error: m_compiler->errors()) - SourceReferenceFormatter::printExceptionInformation(cerr, *error, "Error", *m_compiler); + SourceReferenceFormatter::printExceptionInformation( + cerr, + *error, + (dynamic_pointer_cast<Warning const>(error)) ? "Warning" : "Error", *m_compiler + ); return false; } m_compiler->link(m_libraries); |