From 33f219d1a9ed98e0a9126d3a9e265fcbc9f260aa Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 20 Feb 2009 00:56:18 +0000 Subject: [PATCH] 80 cols llvm-svn: 65095 --- clang/lib/AST/DeclBase.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clang/lib/AST/DeclBase.cpp b/clang/lib/AST/DeclBase.cpp index 8b0405384604..9b277fe99ce4 100644 --- a/clang/lib/AST/DeclBase.cpp +++ b/clang/lib/AST/DeclBase.cpp @@ -359,7 +359,8 @@ DeclContext *DeclContext::getNextContext() { } void DeclContext::addDecl(Decl *D) { - assert(D->getLexicalDeclContext() == this && "Decl inserted into wrong lexical context"); + assert(D->getLexicalDeclContext() == this && + "Decl inserted into wrong lexical context"); assert(!D->NextDeclInScope && D != LastDecl && "Decl already inserted into a DeclContext");