We've inherited a codebase with a lot of naked if statements, like so:
if (some_condition)
do_something();
Our house style forbids this, so I'd like (if possible) for it to be a compiler warning. Can I do that in XCode, and if so, how?
|
We've inherited a codebase with a lot of naked if statements, like so:
Our house style forbids this, so I'd like (if possible) for it to be a compiler warning. Can I do that in XCode, and if so, how? |
|||
|
|
trojanfoe is right, there's no way to get a warning. You can check that by putting Uncrustify is a pretty good code beautifier for many languages, including Objective-C. The config takes some time to setup, for your if-statements you want:
|
|||
|
|