Eliminate a few warnings

This commit is contained in:
Jean Pierre Cimalando 2020-10-10 02:43:27 +02:00
parent b27a509aa9
commit f333013dff
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@ constexpr float sampleRate { 48000.0f };
class FilterFixture : public benchmark::Fixture { class FilterFixture : public benchmark::Fixture {
public: public:
void SetUp(const ::benchmark::State& state) { void SetUp(const ::benchmark::State& /* state */) {
inputLeft = std::vector<float>(blockSize); inputLeft = std::vector<float>(blockSize);
inputRight = std::vector<float>(blockSize); inputRight = std::vector<float>(blockSize);
outputLeft = std::vector<float>(blockSize); outputLeft = std::vector<float>(blockSize);

View file

@ -19,7 +19,7 @@
class FileFixture : public benchmark::Fixture { class FileFixture : public benchmark::Fixture {
public: public:
void SetUp(const ::benchmark::State& state) { void SetUp(const ::benchmark::State& /* state */) {
filePath1 = getPath() / "sample1.flac"; filePath1 = getPath() / "sample1.flac";
filePath2 = getPath() / "sample2.flac"; filePath2 = getPath() / "sample2.flac";
filePath3 = getPath() / "sample3.flac"; filePath3 = getPath() / "sample3.flac";