From e9e0cc799992133f751e4db74fd3385c35bbc79c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 15 Apr 2009 04:57:48 +0000 Subject: [PATCH] remove some commented out -Wstrict-selector-match stuff. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69148 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/clang-cc/Warnings.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/clang-cc/Warnings.cpp b/tools/clang-cc/Warnings.cpp index a69f46d31b..e43da0a4ea 100644 --- a/tools/clang-cc/Warnings.cpp +++ b/tools/clang-cc/Warnings.cpp @@ -78,8 +78,6 @@ static const diag::kind TrigraphsDiags[] = { diag::trigraph_ends_block_comment, diag::trigraph_converted }; -// Hmm ... this option is currently actually completely ignored. -//static const diag::kind StrictSelectorMatchDiags[] = { }; // Second the table of options. MUST be sorted by name! Binary lookup is done. static const WarningOption OptionTable[] = { { "deprecated-declarations", DIAGS(DeprecatedDeclarations) }, @@ -93,7 +91,6 @@ static const WarningOption OptionTable[] = { { "trigraphs", DIAGS(TrigraphsDiags) }, { "undef", DIAGS(UndefDiags) }, { "unused-macros", DIAGS(UnusedMacrosDiags) }, -// { "strict-selector-match", DIAGS(StrictSelectorMatchDiags) } }; static const size_t OptionTableSize = sizeof(OptionTable) / sizeof(OptionTable[0]); -- 2.40.0