aboutsummaryrefslogtreecommitdiffstats
path: root/solc
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2019-01-19 01:59:32 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2019-01-19 01:59:32 +0800
commit8c97fb1688f7d756c783c65504f400c7f5f5f7e5 (patch)
tree1e8e2189e11d3dbbbd3163ca2ee061e963bd112f /solc
parent127c78ee64f3ad2c301d6805d96cb153df3eeeee (diff)
downloaddexon-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.cpp2
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)
{