mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
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
This commit is contained in:
@ -352,12 +352,13 @@ std::error_code resize_file(const Twine &path, uint64_t size);
|
|||||||
/// not.
|
/// not.
|
||||||
bool exists(file_status status);
|
bool exists(file_status status);
|
||||||
|
|
||||||
|
enum class AccessMode { Exist, Write, Execute };
|
||||||
|
|
||||||
/// @brief Can the file be accessed?
|
/// @brief Can the file be accessed?
|
||||||
///
|
///
|
||||||
/// @param Path Input path.
|
/// @param Path Input path.
|
||||||
/// @returns errc::success if the path can be accessed, otherwise a
|
/// @returns errc::success if the path can be accessed, otherwise a
|
||||||
/// platform-specific error_code.
|
/// platform-specific error_code.
|
||||||
enum class AccessMode { Exist, Write, Execute };
|
|
||||||
std::error_code access(const Twine &Path, AccessMode Mode);
|
std::error_code access(const Twine &Path, AccessMode Mode);
|
||||||
|
|
||||||
/// @brief Does file exist?
|
/// @brief Does file exist?
|
||||||
|
Reference in New Issue
Block a user