Skip to content

Commit bce2504

Browse files
committed
Sync changes in tidy.
1 parent 3bdef6a commit bce2504

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang-tools-extra/test/clang-tidy/checkers/fuchsia/default-arguments-calls.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ void S::x(int i = 12) {}
2626
int main() {
2727
S s;
2828
s.x();
29-
// CHECK-NOTES: [[@LINE-1]]:3: warning: calling a function that uses a default argument is disallowed [fuchsia-default-arguments-calls]
29+
// CHECK-NOTES: [[@LINE-1]]:5: warning: calling a function that uses a default argument is disallowed [fuchsia-default-arguments-calls]
3030
// CHECK-NOTES: [[@LINE-6]]:11: note: default parameter was declared here
3131
// CHECK-NEXT: void S::x(int i = 12) {}
3232
x();

0 commit comments

Comments
 (0)