aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/DeclBase.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-02-20 00:56:18 +0000
committerChris Lattner <sabre@nondot.org>2009-02-20 00:56:18 +0000
commit7f0be13b435ad110f99af83a24a50f43225f3083 (patch)
treee23daa89ac9c798bb2aebb85cf29387ff7c7a7ac /lib/AST/DeclBase.cpp
parent91942501b6f71a41d3a09bedec19be479832c718 (diff)
80 cols
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65095 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/DeclBase.cpp')
-rw-r--r--lib/AST/DeclBase.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/AST/DeclBase.cpp b/lib/AST/DeclBase.cpp
index 8b04053846..9b277fe99c 100644
--- a/lib/AST/DeclBase.cpp
+++ b/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");