diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-01-05 21:24:07 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-01-05 21:24:07 +0800 |
commit | 9e7e312fdfc2598d0bd43efc72738845bf2e3992 (patch) | |
tree | bcdc2cb13d9b1e621d15571259672ce0b32da2e4 /libsolidity/interface | |
parent | 35095e9fcc53f76a1c73251497c265f399a9896c (diff) | |
download | dexon-solidity-9e7e312fdfc2598d0bd43efc72738845bf2e3992.tar.gz dexon-solidity-9e7e312fdfc2598d0bd43efc72738845bf2e3992.tar.zst dexon-solidity-9e7e312fdfc2598d0bd43efc72738845bf2e3992.zip |
Properly support library file names containing a colon (such as URLs).
Diffstat (limited to 'libsolidity/interface')
-rw-r--r-- | libsolidity/interface/StandardCompiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/interface/StandardCompiler.cpp b/libsolidity/interface/StandardCompiler.cpp index 7aa971c6..04f5bd25 100644 --- a/libsolidity/interface/StandardCompiler.cpp +++ b/libsolidity/interface/StandardCompiler.cpp @@ -193,7 +193,7 @@ Json::Value formatLinkReferences(std::map<size_t, std::string> const& linkRefere for (auto const& ref: linkReferences) { string const& fullname = ref.second; - size_t colon = fullname.find(':'); + size_t colon = fullname.rfind(':'); solAssert(colon != string::npos, ""); string file = fullname.substr(0, colon); string name = fullname.substr(colon + 1); |