aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/DeclBase.cpp
diff options
context:
space:
mode:
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");