diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-12-08 07:14:51 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-12-08 07:14:51 +0000 |
commit | 17a37ebf320c4cce1870cf1300a6409c4c3d12c3 (patch) | |
tree | b00a9fec071cca644161a45e68e2018ef90368e4 /clang/lib/Sema/SemaDecl.cpp | |
parent | e50d835625d0fe936ca3298f4be907705561ca17 (diff) | |
download | bcm5719-llvm-17a37ebf320c4cce1870cf1300a6409c4c3d12c3.tar.gz bcm5719-llvm-17a37ebf320c4cce1870cf1300a6409c4c3d12c3.zip |
fix 80-col violation.
llvm-svn: 60693
Diffstat (limited to 'clang/lib/Sema/SemaDecl.cpp')
-rw-r--r-- | clang/lib/Sema/SemaDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp index f125cb270e2..b6b1f4c4465 100644 --- a/clang/lib/Sema/SemaDecl.cpp +++ b/clang/lib/Sema/SemaDecl.cpp @@ -76,7 +76,7 @@ DeclContext *Sema::getContainingDC(DeclContext *DC) { void Sema::PushDeclContext(DeclContext *DC) { 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; } |