diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-01-07 19:49:32 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-01-07 19:49:32 +0000 |
commit | a526c5c67e5a0473c340903ee542ce570119665f (patch) | |
tree | bfc9bce5bce917fc2294f717d284c601e3a05559 /AST/DeclSerialization.cpp | |
parent | 8cc71e8d00896e758cf56ea86cfc1f62ade16478 (diff) |
Substituted all instances of the string "Objc" for "ObjC". This fixes
some naming inconsistencies in the names of classes pertaining to Objective-C
support in clang.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45715 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'AST/DeclSerialization.cpp')
-rw-r--r-- | AST/DeclSerialization.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/AST/DeclSerialization.cpp b/AST/DeclSerialization.cpp index 0e0e0ff50b..6baa262602 100644 --- a/AST/DeclSerialization.cpp +++ b/AST/DeclSerialization.cpp @@ -217,7 +217,7 @@ FileVarDecl* FileVarDecl::CreateImpl(Deserializer& D) { void ParmVarDecl::EmitImpl(llvm::Serializer& S) const { VarDecl::EmitImpl(S); - S.EmitInt(getObjcDeclQualifier()); // From ParmVarDecl. + S.EmitInt(getObjCDeclQualifier()); // From ParmVarDecl. } ParmVarDecl* ParmVarDecl::CreateImpl(Deserializer& D) { @@ -225,7 +225,7 @@ ParmVarDecl* ParmVarDecl::CreateImpl(Deserializer& D) { new ParmVarDecl(SourceLocation(),NULL,QualType(),None,NULL); decl->VarDecl::ReadImpl(D); - decl->objcDeclQualifier = static_cast<ObjcDeclQualifier>(D.ReadInt()); + decl->objcDeclQualifier = static_cast<ObjCDeclQualifier>(D.ReadInt()); return decl; } |