diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-19 15:32:37 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-19 15:32:37 +0000 |
commit | 7c8397081c3d101fe467e8375601b091056465e0 (patch) | |
tree | c40f3e165ae04d0adc906d4b6476429adbb6db4e /include | |
parent | 8fe960ed50d3ad39d2a45f960ed8b9a69268035a (diff) | |
download | external_llvm-7c8397081c3d101fe467e8375601b091056465e0.zip external_llvm-7c8397081c3d101fe467e8375601b091056465e0.tar.gz external_llvm-7c8397081c3d101fe467e8375601b091056465e0.tar.bz2 |
Remove Path::getDirectoryContents.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184311 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/PathV1.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/llvm/Support/PathV1.h b/include/llvm/Support/PathV1.h index f4c0ef8..0ece0e6 100644 --- a/include/llvm/Support/PathV1.h +++ b/include/llvm/Support/PathV1.h @@ -17,7 +17,6 @@ #include "llvm/ADT/StringRef.h" #include "llvm/Support/Compiler.h" #include "llvm/Support/TimeValue.h" -#include <set> #include <string> #include <vector> @@ -263,15 +262,6 @@ namespace sys { /// @brief Determines if the file is a regular file bool isRegularFile() const; - /// This function builds a list of paths that are the names of the - /// files and directories in a directory. - /// @returns true if an error occurs, true otherwise - /// @brief Build a list of directory's contents. - bool getDirectoryContents( - std::set<Path> &paths, ///< The resulting list of file & directory names - std::string* ErrMsg ///< Optional place to return an error message. - ) const; - /// @} /// @name Path Mutators /// @{ |