diff options
-rw-r--r-- | include/clang/AST/RawCommentList.h | 2 |
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) |