We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1d5eca commit ecadf98Copy full SHA for ecadf98
clang/lib/AST/CommentParser.cpp
@@ -232,8 +232,8 @@ class TextTokenRetokenizer {
232
while (isWhitespace(*(Pos.BufferPtr - Offset)))
233
Offset++;
234
235
- // Once we've reached the whitespace, backtrack and check if the previous four
236
- // characters are \par or @par.
+ // Once we've reached the whitespace, backtrack and check if the previous
+ // four characters are \par or @par.
237
llvm::StringRef LineStart(Pos.BufferPtr - Offset - 3, 4);
238
return LineStart.starts_with("\\par") || LineStart.starts_with("@par");
239
}
0 commit comments