[cfe-commits] r43506 - in /cfe/trunk/include/clang/Basic: FileManager.h SourceManager.h
Chris Lattner
sabre at nondot.org
Tue Oct 30 10:46:52 PDT 2007
Author: lattner
Date: Tue Oct 30 12:46:51 2007
New Revision: 43506
URL: http://llvm.org/viewvc/llvm-project?rev=43506&view=rev
Log:
update some comments.
Modified:
cfe/trunk/include/clang/Basic/FileManager.h
cfe/trunk/include/clang/Basic/SourceManager.h
Modified: cfe/trunk/include/clang/Basic/FileManager.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/FileManager.h?rev=43506&r1=43505&r2=43506&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/FileManager.h (original)
+++ cfe/trunk/include/clang/Basic/FileManager.h Tue Oct 30 12:46:51 2007
@@ -36,7 +36,7 @@
/// FileEntry - Cached information about one file on the disk.
///
class FileEntry {
- const char *Name; // Name of the directory.
+ const char *Name; // Name of the file.
off_t Size; // File size in bytes.
time_t ModTime; // Modification time of file.
const DirectoryEntry *Dir; // Directory file lives in.
Modified: cfe/trunk/include/clang/Basic/SourceManager.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/SourceManager.h?rev=43506&r1=43505&r2=43506&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/SourceManager.h (original)
+++ cfe/trunk/include/clang/Basic/SourceManager.h Tue Oct 30 12:46:51 2007
@@ -81,7 +81,7 @@
/// chunk number of this FileID.
unsigned ChunkNo;
- /// FileInfo - Information about the source buffer itself.
+ /// Info - Information about the source buffer itself.
///
const InfoRec *Info;
public:
More information about the cfe-commits
mailing list