UnitTests/VertexLoaderTest: Fix compilation on newer GTest versions
This commit is contained in:
parent
fe6e46f846
commit
ccf9ecbb03
|
@ -110,7 +110,6 @@ class VertexLoaderParamTest : public VertexLoaderTest,
|
||||||
public ::testing::WithParamInterface<std::tuple<int, int, int, int>>
|
public ::testing::WithParamInterface<std::tuple<int, int, int, int>>
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
extern int gtest_AllCombinationsVertexLoaderParamTest_dummy_;
|
|
||||||
INSTANTIATE_TEST_CASE_P(AllCombinations, VertexLoaderParamTest,
|
INSTANTIATE_TEST_CASE_P(AllCombinations, VertexLoaderParamTest,
|
||||||
::testing::Combine(::testing::Values(DIRECT, INDEX8, INDEX16),
|
::testing::Combine(::testing::Values(DIRECT, INDEX8, INDEX16),
|
||||||
::testing::Values(FORMAT_UBYTE, FORMAT_BYTE,
|
::testing::Values(FORMAT_UBYTE, FORMAT_BYTE,
|
||||||
|
@ -250,7 +249,6 @@ class VertexLoaderSpeedTest : public VertexLoaderTest,
|
||||||
public ::testing::WithParamInterface<std::tuple<int, int>>
|
public ::testing::WithParamInterface<std::tuple<int, int>>
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
extern int gtest_FormatsAndElementsVertexLoaderSpeedTest_dummy_;
|
|
||||||
INSTANTIATE_TEST_CASE_P(FormatsAndElements, VertexLoaderSpeedTest,
|
INSTANTIATE_TEST_CASE_P(FormatsAndElements, VertexLoaderSpeedTest,
|
||||||
::testing::Combine(::testing::Values(FORMAT_UBYTE, FORMAT_BYTE,
|
::testing::Combine(::testing::Values(FORMAT_UBYTE, FORMAT_BYTE,
|
||||||
FORMAT_USHORT, FORMAT_SHORT,
|
FORMAT_USHORT, FORMAT_SHORT,
|
||||||
|
|
Loading…
Reference in New Issue