ClangSharp
ClangSharp copied to clipboard
Structure field type remapping
For example, I want to remap structure field from:
int Something.type;
to:
SomethingType Something.type;
As concept, I can use --remap-type Something.type=SomethingType
.