aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-06-27 00:57:00 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-06-27 00:57:00 +0000
commitc2cda0284a3e80fa4b39b540f6c73782fa69fa6b (patch)
tree231fa41fc0ab6917050ed0315596bbe5e2d46b82
parent29299c6c98fa05f635c984898d0e9b5fcbb412d4 (diff)
Initialize RawCommentList::BriefTextValid when deserializing AST.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159246 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/AST/RawCommentList.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/AST/RawCommentList.h b/include/clang/AST/RawCommentList.h
index d670fd1428..73816b7b0b 100644
--- a/include/clang/AST/RawCommentList.h
+++ b/include/clang/AST/RawCommentList.h
@@ -121,7 +121,7 @@ private:
/// \brief Constructor for AST deserialization.
RawComment(SourceRange SR, CommentKind K, bool IsTrailingComment,
bool IsAlmostTrailingComment) :
- Range(SR), RawTextValid(false), Kind(K),
+ Range(SR), RawTextValid(false), BriefTextValid(false), Kind(K),
IsTrailingComment(IsTrailingComment),
IsAlmostTrailingComment(IsAlmostTrailingComment),
BeginLineValid(false), EndLineValid(false)