I ran uncrustify with "comment after function of size" set to a very small value. Now practically every function has a comment like this:
-(void) createBackgroundGradient
{
...
} /* createBackgroundGradient */
I can't seem to find a way to remove this trailing function comment. Changing the value of the parameter to only add comments to functions of large size does not remove the already existing comment for smaller functions.
Is it even possible to remove the post-function comments with uncrustify? If so, what would a (safe) Xcode regex need to look like if I wanted to do a search & replace in all project files?