]> granicus.if.org Git - clang/commitdiff
remove some commented out -Wstrict-selector-match stuff.
authorChris Lattner <sabre@nondot.org>
Wed, 15 Apr 2009 04:57:48 +0000 (04:57 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 15 Apr 2009 04:57:48 +0000 (04:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69148 91177308-0d34-0410-b5e6-96231b3b80d8

tools/clang-cc/Warnings.cpp

index a69f46d31bb1942baf5446569f6f9b50623268b8..e43da0a4eabe295de49aed194b64c4c467491b94 100644 (file)
@@ -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]);