From ffacaa0beccbe318090be600f8d2d2c33c33cbd6 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Sat, 14 May 2022 13:48:26 +0100 Subject: [PATCH] Fix unused function 'operator<<' -Wunused-function warning introduced in D124500 --- clang-tools-extra/unittests/clang-tidy/ModernizeModuleTest.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/clang-tools-extra/unittests/clang-tidy/ModernizeModuleTest.cpp b/clang-tools-extra/unittests/clang-tidy/ModernizeModuleTest.cpp index 38347de..65bf069 100644 --- a/clang-tools-extra/unittests/clang-tidy/ModernizeModuleTest.cpp +++ b/clang-tools-extra/unittests/clang-tidy/ModernizeModuleTest.cpp @@ -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 << "'"; -} -- 2.7.4