Fixed warning: must specify at least one argument for '...' parameter.

llvm-svn: 304676
This commit is contained in:
Galina Kistanova 2017-06-04 05:30:26 +00:00
parent 719c94a559
commit 9417735f10
2 changed files with 2 additions and 2 deletions

View File

@ -584,6 +584,6 @@ INSTANTIATE_TEST_CASE_P(ParameterizedCovMapTest, CoverageMappingTest,
::testing::Values(std::pair<bool, bool>({false, false}),
std::pair<bool, bool>({false, true}),
std::pair<bool, bool>({true, false}),
std::pair<bool, bool>({true, true})));
std::pair<bool, bool>({true, true})),);
} // end anonymous namespace

View File

@ -1024,6 +1024,6 @@ TEST_F(SparseInstrProfTest, preserve_no_records) {
}
INSTANTIATE_TEST_CASE_P(MaybeSparse, MaybeSparseInstrProfTest,
::testing::Bool());
::testing::Bool(),);
} // end anonymous namespace