aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/interface/CompilerStack.h
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-06-28 00:08:49 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-08-06 19:54:22 +0800
commit3de0b8b7f002bdc76e629f89df73523b36a169f5 (patch)
tree2a83163b5e199c4ed7819780b1e0b4f51bbeefbf /libsolidity/interface/CompilerStack.h
parent9d03de1f250cecad2c5c796beb10d96c3c9b15cd (diff)
downloaddexon-solidity-3de0b8b7f002bdc76e629f89df73523b36a169f5.tar.gz
dexon-solidity-3de0b8b7f002bdc76e629f89df73523b36a169f5.tar.zst
dexon-solidity-3de0b8b7f002bdc76e629f89df73523b36a169f5.zip
Move absolutePath/sanitizePath helpers from CompilerStack to libdevcore
Diffstat (limited to 'libsolidity/interface/CompilerStack.h')
-rw-r--r--libsolidity/interface/CompilerStack.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/libsolidity/interface/CompilerStack.h b/libsolidity/interface/CompilerStack.h
index 7b144660..fa9fe9b0 100644
--- a/libsolidity/interface/CompilerStack.h
+++ b/libsolidity/interface/CompilerStack.h
@@ -36,7 +36,6 @@
#include <json/json.h>
#include <boost/noncopyable.hpp>
-#include <boost/filesystem.hpp>
#include <ostream>
#include <string>
@@ -274,12 +273,6 @@ private:
std::string applyRemapping(std::string const& _path, std::string const& _context);
void resolveImports();
- /// @returns the absolute path corresponding to @a _path relative to @a _reference.
- static std::string absolutePath(std::string const& _path, std::string const& _reference);
-
- /// Helper function to return path converted strings.
- static std::string sanitizePath(std::string const& _path) { return boost::filesystem::path(_path).generic_string(); }
-
/// @returns true if the contract is requested to be compiled.
bool isRequestedContract(ContractDefinition const& _contract) const;