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

sabre at cs.uiuc.edu sabre at cs.uiuc.edu
Wed Jul 11 09:27:21 PDT 2007


Author: sabre
Date: Wed Jul 11 11:27:21 2007
New Revision: 39077

URL: http://llvm.org/viewvc/llvm-project?rev=39077&view=rev
Log:
no need for these classes to be so friendly anymore.

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=39077&r1=39076&r2=39077&view=diff

==============================================================================
--- cfe/cfe/trunk/include/clang/Lex/IdentifierTable.h (original)
+++ cfe/cfe/trunk/include/clang/Lex/IdentifierTable.h Wed Jul 11 11:27:21 2007
@@ -20,7 +20,6 @@
 
 namespace llvm {
 namespace clang {
-  class IdentifierTable;
   class MacroInfo;
   class LangOptions;
   
@@ -38,7 +37,6 @@
   bool IsPoisoned             : 1; // True if identifier is poisoned.
   bool IsOtherTargetMacro     : 1; // True if ident is macro on another target.
   void *FETokenInfo;               // Managed by the language front-end.
-  friend class IdentifierTable;
   IdentifierInfo(const IdentifierInfo&);  // NONCOPYABLE.
 public:
   IdentifierInfo();





More information about the cfe-commits mailing list