Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/Lex/
H A DPreprocessor.h218 bool KeepComments : 1; variable
1109 void SetCommentRetentionState(bool KeepComments, bool KeepMacroComments) { in SetCommentRetentionState() argument
1110 this->KeepComments = KeepComments | KeepMacroComments; in SetCommentRetentionState()
1114 bool getCommentRetentionState() const { return KeepComments; } in getCommentRetentionState()
/llvm-project-15.0.7/clang/lib/Lex/
H A DPreprocessor.cpp98 KeepComments = false; in Preprocessor()