diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2019-01-19 01:59:32 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2019-01-19 01:59:32 +0800 |
commit | 8c97fb1688f7d756c783c65504f400c7f5f5f7e5 (patch) | |
tree | 1e8e2189e11d3dbbbd3163ca2ee061e963bd112f /solc | |
parent | 127c78ee64f3ad2c301d6805d96cb153df3eeeee (diff) | |
download | dexon-solidity-8c97fb1688f7d756c783c65504f400c7f5f5f7e5.tar.gz dexon-solidity-8c97fb1688f7d756c783c65504f400c7f5f5f7e5.tar.zst dexon-solidity-8c97fb1688f7d756c783c65504f400c7f5f5f7e5.zip |
Remove boost::filesystem::weakly_canonical workaround
Diffstat (limited to 'solc')
-rw-r--r-- | solc/CommandLineInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp index bda1b78a..4bf24901 100644 --- a/solc/CommandLineInterface.cpp +++ b/solc/CommandLineInterface.cpp @@ -731,7 +731,7 @@ bool CommandLineInterface::processInput() try { auto path = boost::filesystem::path(_path); - auto canonicalPath = weaklyCanonicalFilesystemPath(path); + auto canonicalPath = boost::filesystem::weakly_canonical(path); bool isAllowed = false; for (auto const& allowedDir: m_allowedDirectories) { |