diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-12 13:55:07 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-12 13:55:07 +0000 |
commit | d5fd942ec34526bd11f903e6761744223fefab9c (patch) | |
tree | 1742ddf4f8cb3dc71bcef290a2fa7f92db679562 /llvm/lib/Support/Windows/Path.inc | |
parent | 11cb23a6f705008177e9a8ba0c9a0711915f0fe6 (diff) | |
download | bcm5719-llvm-d5fd942ec34526bd11f903e6761744223fefab9c.tar.gz bcm5719-llvm-d5fd942ec34526bd11f903e6761744223fefab9c.zip |
Remove Path::makeExecutableOnDisk.
llvm-svn: 183826
Diffstat (limited to 'llvm/lib/Support/Windows/Path.inc')
-rw-r--r-- | llvm/lib/Support/Windows/Path.inc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/Support/Windows/Path.inc b/llvm/lib/Support/Windows/Path.inc index 413aa94bd69..5ee1e0abf8b 100644 --- a/llvm/lib/Support/Windows/Path.inc +++ b/llvm/lib/Support/Windows/Path.inc @@ -379,11 +379,6 @@ bool Path::makeWriteableOnDisk(std::string* ErrMsg) { return false; } -bool Path::makeExecutableOnDisk(std::string* ErrMsg) { - // All files are executable on Windows (ignoring security attributes). - return false; -} - bool Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const { WIN32_FILE_ATTRIBUTE_DATA fi; |