Feature request: Add FAUXPAS_IGNORED_ON_NEXT_LINE

Issue #84 new
Kent Sutherland created an issue

FAUXPAS_IGNORED_ON_LINE works well, but it can cause some problems with code style and Xcode's indexing. For example, if I want to ignore a warning on potentially unused method I need to do:

- (BOOL)startTextEntryVisible FAUXPAS_IGNORED_ON_LINE(UnusedMethod)

This works, but Xcode will then fail to show the method correctly in the method menu (control-6)

If we could instead do something like:

FAUXPAS_IGNORED_ON_NEXT_LINE(UnusedMethod)
- (BOOL)startTextEntryVisible

That would make things cleaner and let Xcode index the method correctly.

Comments (0)

  1. Log in to comment