[clang-tools-extra] dabda23 - [clang-tidy][NFC] Fix compiler warning in GlobListTest.cpp

Carlos Galvez via cfe-commits cfe-commits at lists.llvm.org
Mon Dec 12 06:49:22 PST 2022


Author: Carlos Galvez
Date: 2022-12-12T14:49:09Z
New Revision: dabda23f1991f7c4e5a840ee6cf1290e18fa2e88

URL: https://github.com/llvm/llvm-project/commit/dabda23f1991f7c4e5a840ee6cf1290e18fa2e88
DIFF: https://github.com/llvm/llvm-project/commit/dabda23f1991f7c4e5a840ee6cf1290e18fa2e88.diff

LOG: [clang-tidy][NFC] Fix compiler warning in GlobListTest.cpp

Added: 
    

Modified: 
    clang-tools-extra/unittests/clang-tidy/GlobListTest.cpp

Removed: 
    


################################################################################
diff  --git a/clang-tools-extra/unittests/clang-tidy/GlobListTest.cpp b/clang-tools-extra/unittests/clang-tidy/GlobListTest.cpp
index 833ba78351d4c..1e2780db0e742 100644
--- a/clang-tools-extra/unittests/clang-tidy/GlobListTest.cpp
+++ b/clang-tools-extra/unittests/clang-tidy/GlobListTest.cpp
@@ -7,7 +7,7 @@ namespace tidy {
 template <typename GlobListT> struct GlobListTest : public ::testing::Test {};
 
 using GlobListTypes = ::testing::Types<GlobList, CachedGlobList>;
-TYPED_TEST_SUITE(GlobListTest, GlobListTypes);
+TYPED_TEST_SUITE(GlobListTest, GlobListTypes, );
 
 TYPED_TEST(GlobListTest, Empty) {
   TypeParam Filter("");


        


More information about the cfe-commits mailing list