dawnbeen / c_formatter_42

C language formatter for 42 norminette

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The formatter doesn't add return parentheses in some contexts

keyhr opened this issue · comments

commented
return (void *)p;

When running the formatter on the above sentence, it doesn't make any changes where expecting to format like below.

return ((void *)p);