Eliminate some warnings in benchmarks
This commit is contained in:
parent
5ad4e6ae24
commit
1a8fcd9d49
2 changed files with 2 additions and 2 deletions
|
|
@ -19,7 +19,7 @@ constexpr float sampleRate { 48000.0f };
|
|||
|
||||
class FilterFixture : public benchmark::Fixture {
|
||||
public:
|
||||
void SetUp(const ::benchmark::State& state) {
|
||||
void SetUp(const ::benchmark::State&) {
|
||||
input = std::vector<float>(blockSize);
|
||||
output = std::vector<float>(blockSize);
|
||||
cutoff = std::vector<float>(blockSize);
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ constexpr float sampleRate { 48000.0f };
|
|||
|
||||
class FilterFixture : public benchmark::Fixture {
|
||||
public:
|
||||
void SetUp(const ::benchmark::State& state) {
|
||||
void SetUp(const ::benchmark::State&) {
|
||||
inputLeft = std::vector<float>(blockSize);
|
||||
inputRight = std::vector<float>(blockSize);
|
||||
outputLeft = std::vector<float>(blockSize);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue