5696ed02e4
Function taking a parameter with a struct tag on the last line before the opening { were wrongly treated as structs. Add some additional regex logic to try to catch those cases. Fixes #4136
11 lines
77 B
Plaintext
11 lines
77 B
Plaintext
void f(int i,
|
|
struct S s)
|
|
{
|
|
|
|
}
|
|
|
|
void g(int i,
|
|
struct S s) {
|
|
|
|
}
|