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 | db0b7f942a74306065d4a1e52b25fcc35bf3879a (patch) | |
tree | 1e84ab7bebb86e6fb67366ea28977dd082c09bef | |
parent | 92992509399e55569dbcb62f7e94f6b6ad9b5177 (diff) | |
download | bcm5719-llvm-db0b7f942a74306065d4a1e52b25fcc35bf3879a.tar.gz bcm5719-llvm-db0b7f942a74306065d4a1e52b25fcc35bf3879a.zip |
Ident class tree in DeclBase properly.
llvm-svn: 54826
-rw-r--r-- | clang/include/clang/AST/DeclBase.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/clang/include/clang/AST/DeclBase.h b/clang/include/clang/AST/DeclBase.h index ef92b42424f..213515010c1 100644 --- a/clang/include/clang/AST/DeclBase.h +++ b/clang/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. |