aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2012-11-02 17:48:49 +0000
committerTed Kremenek <kremenek@apple.com>2012-11-02 17:48:49 +0000
commit28e9cf1ac27862c22e8f9333c5f8fae3eb2ea680 (patch)
treedeaa9df17a720eedfc1d57accdd862c829076d20
parent9b1a48af8e537255055059b8c51e9f3b2e16473c (diff)
Move -Wimplicit-retain-self to be off-by-default until we can evaluate
more how noisy it is. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167300 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Basic/DiagnosticSemaKinds.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td
index 3ad9148512..80ac5ad655 100644
--- a/include/clang/Basic/DiagnosticSemaKinds.td
+++ b/include/clang/Basic/DiagnosticSemaKinds.td
@@ -718,7 +718,7 @@ def warn_arc_repeated_use_of_weak : Warning <
def warn_implicitly_retains_self : Warning <
"block implicitly retains 'self'; explicitly mention 'self' to indicate "
"this is intended behavior">,
- InGroup<DiagGroup<"implicit-retain-self">>;
+ InGroup<DiagGroup<"implicit-retain-self">>, DefaultIgnore;
def warn_arc_possible_repeated_use_of_weak : Warning <
"weak %select{variable|property|implicit property|instance variable}0 %1 may "
"be accessed multiple times in this %select{function|method|block|lambda}2 "