mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
-added warning case to cl compiler
-modified warning msg
This commit is contained in:
parent
b2fa457327
commit
2706846f43
@ -457,7 +457,7 @@ bool TypeChecker::visit(VariableDeclaration const& _variable)
|
||||
auto err = make_shared<Warning>();
|
||||
*err <<
|
||||
errinfo_sourceLocation(_variable.location()) <<
|
||||
errinfo_comment("Uninitialized storage pointer. Did you mean '" + varType->toString(true) + " memory'?");
|
||||
errinfo_comment("Uninitialized storage pointer. Did you mean '<type> memory " + _variable.name() + "'?");
|
||||
m_errors.push_back(err);
|
||||
}
|
||||
}
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user