From: Benjamin Kramer Date: Fri, 12 Aug 2016 09:23:14 +0000 (+0000) Subject: Prune unused diagnostics. NFC. X-Git-Tag: llvmorg-4.0.0-rc1~12618 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6604e9638bfbf1af75c6fd7f5ec4b09b23abcaa9;p=platform%2Fupstream%2Fllvm.git Prune unused diagnostics. NFC. llvm-svn: 278488 --- diff --git a/clang/include/clang/Basic/DiagnosticParseKinds.td b/clang/include/clang/Basic/DiagnosticParseKinds.td index 61a28e7..fb3db57 100644 --- a/clang/include/clang/Basic/DiagnosticParseKinds.td +++ b/clang/include/clang/Basic/DiagnosticParseKinds.td @@ -828,8 +828,6 @@ def warn_availability_and_unavailable : Warning< InGroup; // @available(...) -def err_avail_query_expected_condition : Error< - "expected an availability condition here">; def err_avail_query_expected_platform_name : Error< "expected a platform name here">; diff --git a/clang/include/clang/Basic/DiagnosticSemaKinds.td b/clang/include/clang/Basic/DiagnosticSemaKinds.td index 788ff19..7fa2eb0 100644 --- a/clang/include/clang/Basic/DiagnosticSemaKinds.td +++ b/clang/include/clang/Basic/DiagnosticSemaKinds.td @@ -4316,8 +4316,6 @@ def note_availability_specified_here : Note< "%select{unavailable|deleted|deprecated|partial}1 here">; def note_implicitly_deleted : Note< "explicitly defaulted function was implicitly deleted here">; -def note_inherited_deleted_here : Note< - "deleted constructor was inherited here">; def warn_not_enough_argument : Warning< "not enough variable arguments in %0 declaration to fit a sentinel">, InGroup;