Skip to content

Commit e3a8c33

Browse files
committed
remove redundant trailing empty lines from test data
1 parent d145cfe commit e3a8c33

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

clang-tools-extra/test/clang-tidy/checkers/bugprone/narrowing-conversions-conditional-expressions.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,3 @@ void test(int cond, int i) {
1919
char x = cond > 0 ? ':' : i;
2020
// CHECK-MESSAGES: :[[@LINE-1]]:29: warning: narrowing conversion from 'int' to signed type 'char' is implementation-defined [bugprone-narrowing-conversions]
2121
}
22-

clang-tools-extra/test/clang-tidy/checkers/bugprone/narrowing-conversions-conditional-expressions.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,3 @@ void test(int cond, int i) {
1919
char x = cond > 0 ? ':' : i;
2020
// CHECK-MESSAGES: :[[@LINE-1]]:29: warning: narrowing conversion from 'int' to signed type 'char' is implementation-defined [bugprone-narrowing-conversions]
2121
}
22-

0 commit comments

Comments
 (0)