From 81d53b7290195c48bb15ddfee5a4e805e017a19c Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Fri, 12 Sep 2014 15:12:32 +0000 Subject: [PATCH] Move sys::fs::AccessMode out of @brief in the function. [-Wdocumentation] FIXME: Annotate sys::fs::AccessMode. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217685 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/FileSystem.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/llvm/Support/FileSystem.h b/include/llvm/Support/FileSystem.h index 5fd6213a9da..f4062850360 100644 --- a/include/llvm/Support/FileSystem.h +++ b/include/llvm/Support/FileSystem.h @@ -352,12 +352,13 @@ std::error_code resize_file(const Twine &path, uint64_t size); /// not. bool exists(file_status status); +enum class AccessMode { Exist, Write, Execute }; + /// @brief Can the file be accessed? /// /// @param Path Input path. /// @returns errc::success if the path can be accessed, otherwise a /// platform-specific error_code. -enum class AccessMode { Exist, Write, Execute }; std::error_code access(const Twine &Path, AccessMode Mode); /// @brief Does file exist? -- 2.34.1