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

6 lines
No EOL
52 B
C++

struct S {
void f(int x);
};
void S::f(int y) {
}