aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/Decl.cpp
diff options
context:
space:
mode:
authorSam Bishop <sam@bishop.dhs.org>2008-04-08 20:49:25 +0000
committerSam Bishop <sam@bishop.dhs.org>2008-04-08 20:49:25 +0000
commit670aa9d7639278f507930e95dc89c12032ab7c7e (patch)
treefb6b442892b88e2b1734de8b6d93071e248ffaf1 /lib/AST/Decl.cpp
parent0b6c15349121a030ce914e5192bb3621c79a0656 (diff)
Changed the Decl::Kind enum of the ObjCPropertyDecl class, so that it follows
the pattern of the other Decl classes. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49399 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Decl.cpp')
-rw-r--r--lib/AST/Decl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/Decl.cpp b/lib/AST/Decl.cpp
index 8228eceebf..afe4fcd37f 100644
--- a/lib/AST/Decl.cpp
+++ b/lib/AST/Decl.cpp
@@ -194,7 +194,7 @@ void Decl::addDeclKind(Kind k) {
case ObjCImplementation: nObjCImplementationDecls++; break;
case ObjCCategoryImpl: nObjCCategoryImpl++; break;
case ObjCCompatibleAlias: nObjCCompatibleAlias++; break;
- case PropertyDecl: nObjCPropertyDecl++; break;
+ case ObjCProperty: nObjCPropertyDecl++; break;
case LinkageSpec: nLinkageSpecDecl++; break;
case FileScopeAsm: nFileScopeAsmDecl++; break;
}