"This patch renames
DeclContext *CtxDecl -> DeclContext *DeclCtx
DeclContext *CD -> DeclContext *DC
It makes the code more consistent."
Patch by Zhongxing Xu!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50105 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp
index 415908a..c97ecc8 100644
--- a/lib/Sema/SemaDecl.cpp
+++ b/lib/Sema/SemaDecl.cpp
@@ -42,11 +42,11 @@
return 0;
}
-void Sema::PushDeclContext(DeclContext *CD) {
- assert( ( (CD->isFunctionOrMethod() && isa<TranslationUnitDecl>(CurContext))
- || CD->getParent() == CurContext ) &&
+void Sema::PushDeclContext(DeclContext *DC) {
+ assert( ( (DC->isFunctionOrMethod() && isa<TranslationUnitDecl>(CurContext))
+ || DC->getParent() == CurContext ) &&
"The next DeclContext should be directly contained in the current one.");
- CurContext = CD;
+ CurContext = DC;
}
void Sema::PopDeclContext() {