I often need a few nested multi-line (or "partial lines") comments when developing.
Xcode recently presented perhaps the most dangerous warning in the world - and it made me turn off "warnings as errors." I suppose this warning is to catch an extremely rare case where someone seals and calls a block comment so that there is no end, but IME there are many other problems that will cause this to show it very quickly.
Some examples:
* self.multiplier * 2.0];
}
*/
and
-(void) aDocumentedMethod
{
...
}
-(void) aMethod
{
...complex lines of source here...
}
*/
and, of course, a very simple double comment during debugging.
But I can’t find a place in Xcode5 to turn off this warning - it does not seem to exist in any of the warnings listed :(?