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 | 1b0ea824591f2a6e341890c8a9a10f1c964bc54f (patch) | |
| tree | c7200f70df14bf0cc54d7fb040ec8875d4bf4a51 /clang/AST/DeclSerialization.cpp | |
| parent | c50c210d76888f12b8b6f22a64c22e75b6920b2c (diff) | |
| download | bcm5719-llvm-1b0ea824591f2a6e341890c8a9a10f1c964bc54f.tar.gz bcm5719-llvm-1b0ea824591f2a6e341890c8a9a10f1c964bc54f.zip | |
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.
llvm-svn: 45715
Diffstat (limited to 'clang/AST/DeclSerialization.cpp')
| -rw-r--r-- | clang/AST/DeclSerialization.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/AST/DeclSerialization.cpp b/clang/AST/DeclSerialization.cpp index 0e0e0ff50b9..6baa2626026 100644 --- a/clang/AST/DeclSerialization.cpp +++ b/clang/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; } |

