From: Benjamin Kramer Date: Sat, 3 May 2014 12:32:50 +0000 (+0000) Subject: Remove unused diagnostics. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=20a262762a8cf1c2fe91c62b68ed31e86e71e760;p=clang Remove unused diagnostics. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@207908 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td index c8467688f3..f46e08340c 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.td +++ b/include/clang/Basic/DiagnosticSemaKinds.td @@ -2554,8 +2554,6 @@ def warn_objc_invalid_bridge : Warning< "%0 bridges to %1, not %2">, InGroup; def warn_objc_invalid_bridge_to_cf : Warning< "%0 cannot bridge to %1">, InGroup; -def err_objc_invalid_bridge : Error< - "under ARC %0 bridges to %1, but it still requires an explicit bridge cast">; // objc_bridge_related attribute diagnostics. def err_objc_bridged_related_invalid_class : Error< @@ -5999,8 +5997,6 @@ def err_thread_dynamic_init : Error< "initializer for thread-local variable must be a constant expression">; def err_thread_nontrivial_dtor : Error< "type of thread-local variable has non-trivial destruction">; -def err_thread_nontrivial_ctor : Error< - "type of thread-local variable has non-trivial construction">; def note_use_thread_local : Note< "use 'thread_local' to allow this">;