Reindent comments.

llvm-svn: 38585
This commit is contained in:
Chris Lattner 2006-06-28 05:25:35 +00:00
parent 78d6734b34
commit 274690ce76
1 changed files with 6 additions and 6 deletions

View File

@ -28,12 +28,12 @@ namespace clang {
/// 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