[cfe-commits] r38585 - /cfe/cfe/trunk/include/clang/Lex/IdentifierTable.h

sabre at cs.uiuc.edu sabre at cs.uiuc.edu
Wed Jul 11 09:22:57 PDT 2007


Author: sabre
Date: Wed Jul 11 11:22:57 2007
New Revision: 38585

URL: http://llvm.org/viewvc/llvm-project?rev=38585&view=rev
Log:
Reindent comments.

Modified:
    cfe/cfe/trunk/include/clang/Lex/IdentifierTable.h

Modified: cfe/cfe/trunk/include/clang/Lex/IdentifierTable.h
URL: http://llvm.org/viewvc/llvm-project/cfe/cfe/trunk/include/clang/Lex/IdentifierTable.h?rev=38585&r1=38584&r2=38585&view=diff

==============================================================================
--- cfe/cfe/trunk/include/clang/Lex/IdentifierTable.h (original)
+++ cfe/cfe/trunk/include/clang/Lex/IdentifierTable.h Wed Jul 11 11:22:57 2007
@@ -28,12 +28,12 @@
 /// variable or function name).  The preprocessor keeps this information in a
 /// set, and all tok::identifier tokens have a pointer to one of these.  
 class IdentifierTokenInfo {
-  unsigned NameLen;        // String that is the identifier.
-  MacroInfo *Macro;        // Set if this identifier is #define'd.
-  tok::TokenKind TokenID:8;// Front-end token ID or tok::identifier.
-  bool IsExtension : 1;    // True if this identifier is a language extension.
-  bool IsPoisoned  : 1;    // True if this identifier is poisoned.
-  void *FETokenInfo;       // Managed by the language front-end.
+  unsigned NameLen;         // String that is the identifier.
+  MacroInfo *Macro;         // Set if this identifier is #define'd.
+  tok::TokenKind TokenID:8; // Front-end token ID or tok::identifier.
+  bool IsExtension    : 1;  // True if this identifier is a language extension.
+  bool IsPoisoned     : 1;  // True if this identifier is poisoned.
+  void *FETokenInfo;        // Managed by the language front-end.
   friend class IdentifierTable;
 public:
   /// getName - Return the actual string for this identifier.  The length of





More information about the cfe-commits mailing list