[PATCH] D110283: [ADT] Add trailing comma on TYPED_TEST_SUITE

Alexandre Rames via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Sep 25 18:04:36 PDT 2021


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGe21b0ba8c937: [ADT]  Add trailing comma on TYPED_TEST_SUITE (authored by arames).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D110283/new/

https://reviews.llvm.org/D110283

Files:
  llvm/unittests/ADT/SequenceTest.cpp


Index: llvm/unittests/ADT/SequenceTest.cpp
===================================================================
--- llvm/unittests/ADT/SequenceTest.cpp
+++ llvm/unittests/ADT/SequenceTest.cpp
@@ -35,7 +35,7 @@
                                      >;
 
 template <class T> class StrongIntTest : public testing::Test {};
-TYPED_TEST_SUITE(StrongIntTest, IntegralTypes);
+TYPED_TEST_SUITE(StrongIntTest, IntegralTypes, );
 TYPED_TEST(StrongIntTest, Operations) {
   using T = TypeParam;
   auto Max = std::numeric_limits<T>::max();


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D110283.375074.patch
Type: text/x-patch
Size: 529 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210926/b57296d6/attachment.bin>


More information about the llvm-commits mailing list