// RUN: %check_clang_tidy %s misc-argument-comment %t // FIXME: clang-tidy should provide a -verify mode to make writing these checks // easier and more accurate. void ffff(int xxxx, int yyyy); void f(int x, int y); void g() { // CHECK-MESSAGES: [[@LINE+4]]:5: warning: argument name 'y' in comment does not match parameter name 'x' // CHECK-MESSAGES: :[[@LINE-3]]:12: note: 'x' declared here // CHECK-MESSAGES: [[@LINE+2]]:14: warning: argument name 'z' in comment does not match parameter name 'y' // CHECK-MESSAGES: :[[@LINE-5]]:19: note: 'y' declared here f(/*y=*/0, /*z=*/0); // CHECK-FIXES: {{^}} f(/*y=*/0, /*z=*/0); } struct Closure {}; template Closure *NewCallback(void (*f)(T1, T2), T1 arg1, T2 arg2) { return nullptr; } template Closure *NewPermanentCallback(void (*f)(T1, T2), T1 arg1, T2 arg2) { return nullptr; } void h() { (void)NewCallback(&ffff, /*xxxx=*/11, /*yyyy=*/22); (void)NewPermanentCallback(&ffff, /*xxxx=*/11, /*yyyy=*/22); } template void variadic(Args&&... args); template void variadic2(int zzz, Args&&... args); void templates() { variadic(/*xxx=*/0, /*yyy=*/1); variadic2(/*zzU=*/0, /*xxx=*/1, /*yyy=*/2); // CHECK-MESSAGES: [[@LINE-1]]:13: warning: argument name 'zzU' in comment does not match parameter name 'zzz' // CHECK-FIXES: variadic2(/*zzz=*/0, /*xxx=*/1, /*yyy=*/2); } #define FALSE 0 void qqq(bool aaa); void f() { qqq(/*bbb=*/FALSE); } // CHECK-MESSAGES: [[@LINE-1]]:16: warning: argument name 'bbb' in comment does not match parameter name 'aaa' // CHECK-FIXES: void f() { qqq(/*bbb=*/FALSE); } void f(bool _with_underscores_); void ignores_underscores() { f(/*With_Underscores=*/false); }