[cfe-commits] r159246 - /cfe/trunk/include/clang/AST/RawCommentList.h
Dmitri Gribenko
gribozavr at gmail.com
Tue Jun 26 17:57:00 PDT 2012
Author: gribozavr
Date: Tue Jun 26 19:57:00 2012
New Revision: 159246
URL: http://llvm.org/viewvc/llvm-project?rev=159246&view=rev
Log:
Initialize RawCommentList::BriefTextValid when deserializing AST.
Modified:
cfe/trunk/include/clang/AST/RawCommentList.h
Modified: cfe/trunk/include/clang/AST/RawCommentList.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/RawCommentList.h?rev=159246&r1=159245&r2=159246&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/RawCommentList.h (original)
+++ cfe/trunk/include/clang/AST/RawCommentList.h Tue Jun 26 19:57:00 2012
@@ -121,7 +121,7 @@
/// \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)
More information about the cfe-commits
mailing list