diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-15 04:57:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-15 04:57:48 +0000 |
commit | e9e0cc799992133f751e4db74fd3385c35bbc79c (patch) | |
tree | 5a2de1c7cc4c862810d080d4e168f96a95f13c4a | |
parent | 711997184366d584c9c437102cae1e9d9927b986 (diff) |
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
-rw-r--r-- | tools/clang-cc/Warnings.cpp | 3 |
1 files changed, 0 insertions, 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]); |