From 8e9d1c5b017afc42209cf42d632a594a8cf2d4f6 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Fri, 12 Aug 2016 09:23:14 +0000 Subject: [PATCH] Prune unused diagnostics. NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@278488 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Basic/DiagnosticParseKinds.td | 2 -- include/clang/Basic/DiagnosticSemaKinds.td | 2 -- 2 files changed, 4 deletions(-) diff --git a/include/clang/Basic/DiagnosticParseKinds.td b/include/clang/Basic/DiagnosticParseKinds.td index 61a28e7896..fb3db57876 100644 --- a/include/clang/Basic/DiagnosticParseKinds.td +++ b/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/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td index 788ff19211..7fa2eb0e5a 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.td +++ b/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; -- 2.40.0