Commit 04996618 authored by Justin Spahr-Summers's avatar Justin Spahr-Summers
Browse files

Merge pull request #10 from jspahrsummers/no-warn-weak

Don't warn about weak refs
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
......@@ -47,8 +47,8 @@ CLANG_WARN_IMPLICIT_SIGN_CONVERSION = NO
// For example, this can catch issues when one incorrectly intermixes using NSNumbers and raw integers.
CLANG_WARN_INT_CONVERSION = YES
// Warn about repeatedly using a weak reference without assigning the weak reference to a strong reference.
CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES
// Don't warn about repeatedly using a weak reference without assigning the weak reference to a strong reference. Too many false positives.
CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = NO
// Warn about classes that unintentionally do not subclass a root class (such as NSObject).
CLANG_WARN_OBJC_ROOT_CLASS = YES
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment