Skip to content

Commit

Permalink
Fix build for mac and windows
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-fonseca committed Jul 10, 2024
1 parent f31b715 commit 9774447
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion test/test_Vector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,8 @@ class VecTesterBase
static int s_throwCount;
};

template <>
int VecTesterBase<true>::s_throwCount = -1;
template <>
int VecTesterBase<false>::s_throwCount = -1;

Expand Down Expand Up @@ -1948,7 +1950,7 @@ REGISTER_TYPED_TEST_SUITE_P(NonTrivialStruct,

using Types = testing::Types<ThrowingVecTester, NonThrowingVecTester>;

INSTANTIATE_TYPED_TEST_SUITE_P(TestVector, NonTrivialStruct, Types);
INSTANTIATE_TYPED_TEST_SUITE_P(TestVector, NonTrivialStruct, Types, );

struct VecTestStruct
{
Expand Down

0 comments on commit 9774447

Please sign in to comment.