git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60693 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Zhongxing Xu 2008-12-08 07:14:51 +00:00
Родитель 00c028b4a1
Коммит e50897af8b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -76,7 +76,7 @@ DeclContext *Sema::getContainingDC(DeclContext *DC) {
void Sema::PushDeclContext(DeclContext *DC) { void Sema::PushDeclContext(DeclContext *DC) {
assert(getContainingDC(DC) == CurContext && assert(getContainingDC(DC) == CurContext &&
"The next DeclContext should be lexically contained in the current one."); "The next DeclContext should be lexically contained in the current one.");
CurContext = DC; CurContext = DC;
} }