Remove unused parameter from lambda. (#1223)

Fixes #1222
This commit is contained in:
Dominic Hamon 2021-09-07 17:54:23 +01:00 committed by GitHub
parent 92f50a22eb
commit c23a001252
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -943,7 +943,7 @@ ADD_CASES(
// ------------- Testing relative standard deviation statistics ------------ //
// ========================================================================= //
const auto UserPercentStatistics = [](const std::vector<double>& v) {
const auto UserPercentStatistics = [](const std::vector<double>&) {
return 1. / 100.;
};
void BM_UserPercentStats(benchmark::State& state) {