summaryrefslogtreecommitdiffstats
path: root/clang/lib
diff options
context:
space:
mode:
Diffstat (limited to 'clang/lib')
-rw-r--r--clang/lib/AST/DeclBase.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/AST/DeclBase.cpp b/clang/lib/AST/DeclBase.cpp
index 8b040538460..9b277fe99ce 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");
OpenPOWER on IntegriCloud