From 3d0fe853d329d02dc4c9230976f3565848445da3 Mon Sep 17 00:00:00 2001 From: Mikhail Glushenkov Date: Thu, 28 Oct 2010 19:32:47 +0000 Subject: [PATCH] 80-col violations. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117580 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/System/Path.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/llvm/System/Path.h b/include/llvm/System/Path.h index 27fa2c3f4fc..ef7c087bb76 100644 --- a/include/llvm/System/Path.h +++ b/include/llvm/System/Path.h @@ -345,8 +345,8 @@ namespace sys { /// This function determines if the path name in the object references a /// native object file by looking at it's magic number. The term object /// file is defined as "an organized collection of separate, named - /// sequences of binary data." This covers the obvious file formats such as - /// COFF and ELF, but it also includes llvm ir bitcode, archives, + /// sequences of binary data." This covers the obvious file formats such + /// as COFF and ELF, but it also includes llvm ir bitcode, archives, /// libraries, etc... /// @returns true if the file starts with the magic number for an object /// file. @@ -385,9 +385,9 @@ namespace sys { /// in the file system. bool canWrite() const; - /// This function checks that what we're trying to work only on a regular file. - /// Check for things like /dev/null, any block special file, - /// or other things that aren't "regular" regular files. + /// This function checks that what we're trying to work only on a regular + /// file. Check for things like /dev/null, any block special file, or + /// other things that aren't "regular" regular files. /// @returns true if the file is S_ISREG. /// @brief Determines if the file is a regular file bool isRegularFile() const;