diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-08-01 23:21:57 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-08-01 23:21:57 +0000 |
commit | e6213ddabcee982f029cfb657089be896695a934 (patch) | |
tree | 526d38a2968802005564751645e0ae8bfc16eaa0 /clang/lib/AST/CommentSema.cpp | |
parent | 527ab21112b2bb19258deb1780dcda5b53284f72 (diff) | |
download | bcm5719-llvm-e6213ddabcee982f029cfb657089be896695a934.tar.gz bcm5719-llvm-e6213ddabcee982f029cfb657089be896695a934.zip |
Initialize flag in DeclInfo.
llvm-svn: 161141
Diffstat (limited to 'clang/lib/AST/CommentSema.cpp')
-rw-r--r-- | clang/lib/AST/CommentSema.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/AST/CommentSema.cpp b/clang/lib/AST/CommentSema.cpp index 35660916550..cedc72a988c 100644 --- a/clang/lib/AST/CommentSema.cpp +++ b/clang/lib/AST/CommentSema.cpp @@ -29,6 +29,7 @@ void Sema::setDecl(const Decl *D) { ThisDeclInfo = new (Allocator) DeclInfo; ThisDeclInfo->ThisDecl = D; + ThisDeclInfo->IsFilled = false; } ParagraphComment *Sema::actOnParagraphComment( |