[cfe-commits] r65095 - /cfe/trunk/lib/AST/DeclBase.cpp
Chris Lattner
sabre at nondot.org
Thu Feb 19 16:56:18 PST 2009
Author: lattner
Date: Thu Feb 19 18:56:18 2009
New Revision: 65095
URL: http://llvm.org/viewvc/llvm-project?rev=65095&view=rev
Log:
80 cols
Modified:
cfe/trunk/lib/AST/DeclBase.cpp
Modified: cfe/trunk/lib/AST/DeclBase.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/DeclBase.cpp?rev=65095&r1=65094&r2=65095&view=diff
==============================================================================
--- cfe/trunk/lib/AST/DeclBase.cpp (original)
+++ cfe/trunk/lib/AST/DeclBase.cpp Thu Feb 19 18:56:18 2009
@@ -359,7 +359,8 @@
}
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");
More information about the cfe-commits
mailing list