Open
Description
typedef int *Pint;
Pint ofBeer(void) {
return 0;
}
rewrites to
typedef _Ptr<int> Pint;
Pint ofBeer(void) {
return 0;
}
Note the extra space before "Pint" in the typedef and after "Pint" in the function def.
Also, the function didn't need rewriting, which adds formatting diffs to untouched code.