From e50897af8bcdeee5e4bd65a5d122df9bee82705a Mon Sep 17 00:00:00 2001 From: Zhongxing Xu Date: Mon, 8 Dec 2008 07:14:51 +0000 Subject: [PATCH] fix 80-col violation. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60693 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Sema/SemaDecl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp index f125cb270e..b6b1f4c446 100644 --- a/lib/Sema/SemaDecl.cpp +++ b/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; } -- 2.50.1