| 1 | // RUN: %check_clang_tidy %s misc-const-correctness %t \ |
| 2 | // RUN: -config='{CheckOptions: \ |
| 3 | // RUN: {misc-const-correctness.AnalyzeValues: true,\ |
| 4 | // RUN: misc-const-correctness.WarnPointersAsValues: true, \ |
| 5 | // RUN: misc-const-correctness.WarnPointersAsPointers: false, \ |
| 6 | // RUN: misc-const-correctness.TransformPointersAsValues: true}\ |
| 7 | // RUN: }' -- -fno-delayed-template-parsing |
| 8 | |
| 9 | void potential_const_pointer() { |
| 10 | double np_local0[10] = {0., 1., 2., 3., 4., 5., 6., 7., 8., 9.}; |
| 11 | double *p_local0 = &np_local0[1]; |
| 12 | // CHECK-MESSAGES: [[@LINE-1]]:3: warning: variable 'p_local0' of type 'double *' can be declared 'const' |
| 13 | // CHECK-FIXES: double *const p_local0 = &np_local0[1]; |
| 14 | } |
| 15 | |