diff options
author | Dimitry <dimitry@ethdev.com> | 2016-09-01 02:53:44 +0800 |
---|---|---|
committer | Dimitry <dimitry@ethdev.com> | 2016-09-01 03:10:20 +0800 |
commit | 061aee2e97969698c0b8fbf64666f746b13c1882 (patch) | |
tree | 736d8500272750e36aa049f44ab1d18a5d6ce778 /libsolidity/interface | |
parent | 52d9f897126394dcc7388277d4fbd3ef7b4df38a (diff) | |
download | dexon-solidity-061aee2e97969698c0b8fbf64666f746b13c1882.tar.gz dexon-solidity-061aee2e97969698c0b8fbf64666f746b13c1882.tar.zst dexon-solidity-061aee2e97969698c0b8fbf64666f746b13c1882.zip |
fix CompilerStack::absolutePath
Diffstat (limited to 'libsolidity/interface')
-rw-r--r-- | libsolidity/interface/CompilerStack.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/interface/CompilerStack.cpp b/libsolidity/interface/CompilerStack.cpp index bd79bb73..ec6b5d2e 100644 --- a/libsolidity/interface/CompilerStack.cpp +++ b/libsolidity/interface/CompilerStack.cpp @@ -555,7 +555,7 @@ string CompilerStack::absolutePath(string const& _path, string const& _reference result = result.parent_path(); else if (*it != ".") result /= *it; - return result.string(); + return result.generic_string(); } void CompilerStack::compileContract( |