diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2010-10-28 19:32:47 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2010-10-28 19:32:47 +0000 |
commit | a90bee3ee8f3c6986824b40c7ab667982ce33de0 (patch) | |
tree | a7dc26a84e7e81caca48b95f1e26e889cbf4e308 | |
parent | 1742de5cbed6477b0fc52ea993110ae18897ca8e (diff) | |
download | llvm-a90bee3ee8f3c6986824b40c7ab667982ce33de0.zip llvm-a90bee3ee8f3c6986824b40c7ab667982ce33de0.tar.gz llvm-a90bee3ee8f3c6986824b40c7ab667982ce33de0.tar.bz2 |
80-col violations.
llvm-svn: 117580
-rw-r--r-- | llvm/include/llvm/System/Path.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/include/llvm/System/Path.h b/llvm/include/llvm/System/Path.h index 27fa2c3..ef7c087 100644 --- a/llvm/include/llvm/System/Path.h +++ b/llvm/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; |