diff options
Diffstat (limited to 'llvm/lib/System/Win32/Path.cpp')
-rw-r--r-- | llvm/lib/System/Win32/Path.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/lib/System/Win32/Path.cpp b/llvm/lib/System/Win32/Path.cpp index e847154e583..43d553bbd99 100644 --- a/llvm/lib/System/Win32/Path.cpp +++ b/llvm/lib/System/Win32/Path.cpp @@ -287,6 +287,15 @@ Path::getLast() const { return path.substr(pos+1); } +void Path::makeReadable() { +} + +void Path::makeWriteable() { +} + +void Path::makeExecutable() { +} + bool Path::setDirectory(const std::string& a_path) { if (a_path.size() == 0) |