mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix error message.
This commit is contained in:
parent
8c1d949d1a
commit
f8ce32f2a6
@ -97,7 +97,7 @@ bool AsmAnalyzer::operator()(assembly::Literal const& _literal)
|
|||||||
{
|
{
|
||||||
m_errors.push_back(make_shared<Error>(
|
m_errors.push_back(make_shared<Error>(
|
||||||
Error::Type::TypeError,
|
Error::Type::TypeError,
|
||||||
"string literal too long (" + boost::lexical_cast<std::string>(_literal.value.size()) + " > 32)"
|
"String literal too long (" + boost::lexical_cast<std::string>(_literal.value.size()) + " > 32)"
|
||||||
));
|
));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user