Fix error message.

This commit is contained in:
chriseth 2017-03-03 15:40:52 +01:00
parent 8c1d949d1a
commit f8ce32f2a6

View File

@ -97,7 +97,7 @@ bool AsmAnalyzer::operator()(assembly::Literal const& _literal)
{
m_errors.push_back(make_shared<Error>(
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;
}