Skip to content

Typedef rewritten unnecessarily with extra space. #386

Open
@kyleheadley

Description

@kyleheadley
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.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions