From f333013dff2fd729ef5d6de5c7d92658e7efac13 Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Sat, 10 Oct 2020 02:43:27 +0200 Subject: [PATCH] Eliminate a few warnings --- benchmarks/BM_filterStereoMono.cpp | 2 +- benchmarks/BM_flacfile.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmarks/BM_filterStereoMono.cpp b/benchmarks/BM_filterStereoMono.cpp index 16185812..43030a24 100644 --- a/benchmarks/BM_filterStereoMono.cpp +++ b/benchmarks/BM_filterStereoMono.cpp @@ -20,7 +20,7 @@ constexpr float sampleRate { 48000.0f }; class FilterFixture : public benchmark::Fixture { public: - void SetUp(const ::benchmark::State& state) { + void SetUp(const ::benchmark::State& /* state */) { inputLeft = std::vector(blockSize); inputRight = std::vector(blockSize); outputLeft = std::vector(blockSize); diff --git a/benchmarks/BM_flacfile.cpp b/benchmarks/BM_flacfile.cpp index 9d17de3a..4fedae8c 100644 --- a/benchmarks/BM_flacfile.cpp +++ b/benchmarks/BM_flacfile.cpp @@ -19,7 +19,7 @@ class FileFixture : public benchmark::Fixture { public: - void SetUp(const ::benchmark::State& state) { + void SetUp(const ::benchmark::State& /* state */) { filePath1 = getPath() / "sample1.flac"; filePath2 = getPath() / "sample2.flac"; filePath3 = getPath() / "sample3.flac";