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 | 651f8ce530ebe6f7f4b67988c3c532a94f097efc (patch) | |
tree | f0f60568eff418575783c125c4f378d8fcc637cd /lib/AST/CommentSema.cpp | |
parent | 1ca7ecc8854ffea215c033a0d8482551bf1b73f0 (diff) |
Initialize flag in DeclInfo.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161141 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/CommentSema.cpp')
-rw-r--r-- | lib/AST/CommentSema.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/AST/CommentSema.cpp b/lib/AST/CommentSema.cpp index 3566091655..cedc72a988 100644 --- a/lib/AST/CommentSema.cpp +++ b/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( |