diff options
author | Chris Lattner <sabre@nondot.org> | 2009-02-20 00:56:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-02-20 00:56:18 +0000 |
commit | 33f219d1a9ed98e0a9126d3a9e265fcbc9f260aa (patch) | |
tree | 124f08a2ce327a312193d74c03a8682518e0d5ac /clang/lib | |
parent | 24e24d51a13f9e837e4340feae1b9541fb44a2c1 (diff) | |
download | bcm5719-llvm-33f219d1a9ed98e0a9126d3a9e265fcbc9f260aa.tar.gz bcm5719-llvm-33f219d1a9ed98e0a9126d3a9e265fcbc9f260aa.zip |
80 cols
llvm-svn: 65095
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/AST/DeclBase.cpp | 3 |
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"); |