diff options
| author | Ted Kremenek <kremenek@apple.com> | 2012-07-25 07:26:32 +0000 |
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2012-07-25 07:26:32 +0000 |
| commit | 875a402dc32237a148a80c97c58895049110ecc4 (patch) | |
| tree | 409b09e798be8c30c7284d1d6d44958def1647e2 /clang/include | |
| parent | 2b619662eefba57c433b30964cb4c6a2e13eb34f (diff) | |
| download | bcm5719-llvm-875a402dc32237a148a80c97c58895049110ecc4.tar.gz bcm5719-llvm-875a402dc32237a148a80c97c58895049110ecc4.zip | |
Turn -Wobjc-root-class on by default. <rdar://problem/11203649>.
llvm-svn: 160707
Diffstat (limited to 'clang/include')
| -rw-r--r-- | clang/include/clang/Basic/DiagnosticSemaKinds.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Basic/DiagnosticSemaKinds.td b/clang/include/clang/Basic/DiagnosticSemaKinds.td index 67f43d22c81..6a4e7d8c9bb 100644 --- a/clang/include/clang/Basic/DiagnosticSemaKinds.td +++ b/clang/include/clang/Basic/DiagnosticSemaKinds.td @@ -480,7 +480,7 @@ def err_objc_root_class_subclass : Error< "objc_root_class attribute may only be specified on a root class declaration">; def warn_objc_root_class_missing : Warning< "class %0 defined without specifying a base class">, - InGroup<ObjCRootClass>, DefaultIgnore; + InGroup<ObjCRootClass>; def note_objc_needs_superclass : Note< "add a super class to fix this problem">; def warn_dup_category_def : Warning< |

