diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-08-15 23:18:35 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-08-15 23:18:35 +0000 |
commit | 226e04a9b7790a7311aff2aa9df340c1841e20e3 (patch) | |
tree | 4b5b5d4824c8ae48dca84cc4a7133bee36862ec3 | |
parent | 7ded7f4983dc4a20561db7a8d02c6b2435030961 (diff) |
Ident class tree in DeclBase properly.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54826 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/DeclBase.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/clang/AST/DeclBase.h b/include/clang/AST/DeclBase.h index ef92b42424..213515010c 100644 --- a/include/clang/AST/DeclBase.h +++ b/include/clang/AST/DeclBase.h @@ -72,14 +72,14 @@ public: ImplicitParam, CXXClassVar, ParmVar, - ObjCInterface, // [DeclContext] - ObjCCompatibleAlias, - ObjCMethod, // [DeclContext] - ObjCClass, - ObjCForwardProtocol, - ObjCPropertyImpl, + ObjCInterface, // [DeclContext] + ObjCCompatibleAlias, + ObjCMethod, // [DeclContext] + ObjCClass, + ObjCForwardProtocol, + ObjCPropertyImpl, LinkageSpec, - FileScopeAsm, + FileScopeAsm, // For each non-leaf class, we now define a mapping to the first/last member // of the class, to allow efficient classof. |