Skip to content

Commit

Permalink
Consistent format for secondary location in sourceformatter
Browse files Browse the repository at this point in the history
  • Loading branch information
axic committed Aug 2, 2017
1 parent 7553beb commit 934a5db
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions libsolidity/interface/SourceReferenceFormatter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,8 @@ void SourceReferenceFormatter::printExceptionInformation(
{
for (auto info: secondarylocation->infos)
{
_stream << info.first << " ";
printSourceName(_stream, &info.second, _scannerFromSourceName);
_stream << endl;
_stream << info.first << endl;
printSourceLocation(_stream, &info.second, _scannerFromSourceName);
}
_stream << endl;
Expand Down

0 comments on commit 934a5db

Please sign in to comment.