================ @@ -1134,6 +1134,14 @@ void UnwrappedLineParser::parsePPDefine() { return; } + if (Style.IgnorePPDefinitions) { + do { + nextToken(); + } while (!eof()); ---------------- tomekpaszek wrote:
In this case, `eof` is a marker for the end of the unwrapped line that is being parsed. It's a pattern used in other parts of the file. https://github.com/llvm/llvm-project/pull/70338 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits