Add simpler version of is_directory. It will be used in clang.

llvm-svn: 186486
This commit is contained in:
Rafael Espindola 2013-07-17 04:20:49 +00:00
parent f263d3bfb8
commit 52e19a1bf7

View File

@ -464,6 +464,13 @@ bool is_directory(file_status status);
/// platform specific error_code.
error_code is_directory(const Twine &path, bool &result);
/// @brief Simpler version of is_directory for clients that don't need to
/// differentiate between an error and false.
inline bool is_directory(const Twine &Path) {
bool Result;
return !is_directory(Path, Result) && Result;
}
/// @brief Does status represent a regular file?
///
/// @param status A file_status previously returned from status.