Skip to content

Commit bacc9c2

Browse files
committed
clang-format
1 parent c3561b0 commit bacc9c2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

clang/lib/Lex/DependencyDirectivesScanner.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,10 +213,12 @@ static char previousChar(const char *First, const char *&Current) {
213213
while (Current > First && isVerticalWhitespace(*Current)) {
214214
// Check if the previous character is a backslash
215215
if (Current > First && *(Current - 1) == '\\') {
216-
// Use Lexer's getEscapedNewLineSize to get the size of the escaped newline
216+
// Use Lexer's getEscapedNewLineSize to get the size of the escaped
217+
// newline
217218
unsigned EscapeSize = Lexer::getEscapedNewLineSize(Current);
218219
if (EscapeSize > 0) {
219-
// Skip back over the entire escaped newline sequence (backslash + newline)
220+
// Skip back over the entire escaped newline sequence (backslash +
221+
// newline)
220222
Current -= (1 + EscapeSize);
221223
} else {
222224
break;

0 commit comments

Comments
 (0)