Merge pull request #7189 from ethereum/trailing-whitespace

New Error Reporter: Fix trailing whitespace
This commit is contained in:
chriseth 2019-08-07 15:36:29 +02:00 committed by GitHub
commit d8dc090567
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,7 +73,7 @@ void SourceReferenceFormatterHuman::printSourceLocation(SourceReference const& _
// line 0: source name // line 0: source name
frameColored() << string(leftpad, ' ') << "--> "; frameColored() << string(leftpad, ' ') << "--> ";
m_stream << _ref.sourceName << ":" << (_ref.position.line + 1) << ":" << (_ref.position.column + 1) << ": " << '\n'; m_stream << _ref.sourceName << ":" << (_ref.position.line + 1) << ":" << (_ref.position.column + 1) << ":" << '\n';
if (!_ref.multiline) if (!_ref.multiline)
{ {