Home
last modified time | relevance | path

Searched refs:KeepComments (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessor.h223 bool KeepComments : 1; variable
1255 void SetCommentRetentionState(bool KeepComments, bool KeepMacroComments) { in SetCommentRetentionState() argument
1256 this->KeepComments = KeepComments | KeepMacroComments; in SetCommentRetentionState()
1260 bool getCommentRetentionState() const { return KeepComments; } in getCommentRetentionState()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessor.cpp102 KeepComments = false; in Preprocessor()