summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-06-12 13:59:17 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-06-12 13:59:17 +0000
commitddee9b46917d10e7d854011d275b77ad41693726 (patch)
treebfc174f6475b98f497cf8a0a285058c6a948ef06 /include
parentf90690f202901c7f6ba633bc144c9de9247b1834 (diff)
downloadllvm-ddee9b46917d10e7d854011d275b77ad41693726.tar.gz
llvm-ddee9b46917d10e7d854011d275b77ad41693726.tar.bz2
llvm-ddee9b46917d10e7d854011d275b77ad41693726.tar.xz
Remove Path::createFileOnDisk.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183827 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/PathV1.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/llvm/Support/PathV1.h b/include/llvm/Support/PathV1.h
index 4d6064ac01..bc15cd3beb 100644
--- a/include/llvm/Support/PathV1.h
+++ b/include/llvm/Support/PathV1.h
@@ -458,17 +458,6 @@ namespace sys {
std::string* ErrMsg = 0 ///< Optional place to put error messages.
);
- /// This method attempts to create a file in the file system with the same
- /// name as the Path object. The intermediate directories must all exist
- /// at the time this method is called. Use createDirectoriesOnDisk to
- /// accomplish that. The created file will be empty upon return from this
- /// function.
- /// @returns true if the file could not be created, false otherwise.
- /// @brief Create the file this Path refers to.
- bool createFileOnDisk(
- std::string* ErrMsg = 0 ///< Optional place to put error messages.
- );
-
/// This is like createFile except that it creates a temporary file. A
/// unique temporary file name is generated based on the contents of
/// \p this before the call. The new name is assigned to \p this and the