Fix unused function 'operator<<' -Wunused-function warning introduced in D124500

This commit is contained in:
Simon Pilgrim 2022-05-14 13:48:26 +01:00
parent 0a1a318f31
commit ffacaa0bec
1 changed files with 0 additions and 6 deletions

View File

@ -206,9 +206,3 @@ INSTANTIATE_TEST_SUITE_P(TokenExpressionParserTests, MatcherTest,
} // namespace test
} // namespace tidy
} // namespace clang
std::ostream &operator<<(std::ostream &Str,
const clang::tidy::test::Param &Value) {
return Str << "Matched: " << std::boolalpha << Value.Matched << ", Text: '"
<< Value.Text << "'";
}