mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix a typo
A semicolon was mistakenly inserted where a string concatenation operator was meant.
This commit is contained in:
parent
060b2c2b23
commit
f364529713
@ -54,7 +54,7 @@ void SyntaxChecker::endVisit(SourceUnit const& _sourceUnit)
|
||||
string(".") +
|
||||
to_string(recommendedVersion.minor()) +
|
||||
string(".") +
|
||||
to_string(recommendedVersion.patch());
|
||||
to_string(recommendedVersion.patch()) +
|
||||
string(";\"");
|
||||
|
||||
m_errorReporter.warning(_sourceUnit.location(), errorString);
|
||||
|
Loading…
Reference in New Issue
Block a user