gecko-dev/tools/clang-tidy/test/readability-non-const-parameter.cpp
2018-10-02 14:10:32 +00:00

5 lines
No EOL
77 B
C++

void warn1(int *first, int *last) {
*first = 0;
if (first < last) {
}
}