Fix error codes.

This commit is contained in:
chriseth 2020-06-10 18:25:19 +02:00
parent 7908e6c373
commit a1165c135d
2 changed files with 2 additions and 2 deletions

View File

@ -335,7 +335,7 @@ bool TypeChecker::visit(FunctionDefinition const& _function)
if (_function.visibility() == Visibility::Private)
m_errorReporter.typeError(3942_error, _function.location(), "\"virtual\" and \"private\" cannot be used together.");
if (_function.libraryFunction())
m_errorReporter.typeError(1878_error, _function.location(), "Library functions cannot be \"virtual\".");
m_errorReporter.typeError(7801_error, _function.location(), "Library functions cannot be \"virtual\".");
}
if (_function.isPayable())

View File

@ -592,7 +592,7 @@ bool AsmAnalyzer::warnOnInstructions(evmasm::Instruction _instr, SourceLocation
else if (_instr == evmasm::Instruction::PC)
{
m_errorReporter.error(
4316_error,
2450_error,
Error::Type::SyntaxError,
_location,
"PC instruction is a low-level EVM feature. "