diff options
author | chriseth <chris@ethereum.org> | 2018-03-06 05:51:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-06 05:51:53 +0800 |
commit | 9d67e9b4fc1b04a1e2d837a30ffb4ebee8863115 (patch) | |
tree | 1baae073942dc6cdf0fb7855d01ed58006699b7f /libsolidity | |
parent | be797cb796f058c65452531755687da42867050f (diff) | |
parent | 174c46d5afd8be4e6b23804bbdd8245d5a78cc0e (diff) | |
download | dexon-solidity-9d67e9b4fc1b04a1e2d837a30ffb4ebee8863115.tar dexon-solidity-9d67e9b4fc1b04a1e2d837a30ffb4ebee8863115.tar.gz dexon-solidity-9d67e9b4fc1b04a1e2d837a30ffb4ebee8863115.tar.bz2 dexon-solidity-9d67e9b4fc1b04a1e2d837a30ffb4ebee8863115.tar.lz dexon-solidity-9d67e9b4fc1b04a1e2d837a30ffb4ebee8863115.tar.xz dexon-solidity-9d67e9b4fc1b04a1e2d837a30ffb4ebee8863115.tar.zst dexon-solidity-9d67e9b4fc1b04a1e2d837a30ffb4ebee8863115.zip |
Merge pull request #3640 from AnthonyBroadCrawford/spanning-multiline-message-fix
moved spanning multi lines message to appear on some lane vs new lineā¦
Diffstat (limited to 'libsolidity')
-rw-r--r-- | libsolidity/interface/SourceReferenceFormatter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libsolidity/interface/SourceReferenceFormatter.cpp b/libsolidity/interface/SourceReferenceFormatter.cpp index 9d02c498..0f014372 100644 --- a/libsolidity/interface/SourceReferenceFormatter.cpp +++ b/libsolidity/interface/SourceReferenceFormatter.cpp @@ -79,8 +79,8 @@ void SourceReferenceFormatter::printSourceLocation(SourceLocation const* _locati scanner.lineAtPosition(_location->start) << endl << string(startColumn, ' ') << - "^\n" << - "Spanning multiple lines.\n"; + "^ (Relevant source part starts here and spans across multiple lines)." << + endl; } void SourceReferenceFormatter::printSourceName(SourceLocation const* _location) |