From 8160edfd04307bec3e0d5e3eacb15b25eeb645c8 Mon Sep 17 00:00:00 2001 From: Dennis Klein Date: Tue, 10 Mar 2020 14:06:41 +0100 Subject: [PATCH] Silence -Wunused-parameter --- examples/qc/runSampler.cxx | 2 +- examples/qc/runSink.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/qc/runSampler.cxx b/examples/qc/runSampler.cxx index b0faad57..952d3549 100644 --- a/examples/qc/runSampler.cxx +++ b/examples/qc/runSampler.cxx @@ -32,5 +32,5 @@ class Sampler : public FairMQDevice }; namespace bpo = boost::program_options; -void addCustomOptions(bpo::options_description& options) {} +void addCustomOptions(bpo::options_description&) {} FairMQDevicePtr getDevice(const fair::mq::ProgOptions& /*config*/) { return new Sampler(); } diff --git a/examples/qc/runSink.cxx b/examples/qc/runSink.cxx index 281d63f5..844e0be5 100644 --- a/examples/qc/runSink.cxx +++ b/examples/qc/runSink.cxx @@ -21,5 +21,5 @@ class Sink : public FairMQDevice }; namespace bpo = boost::program_options; -void addCustomOptions(bpo::options_description& options) {} +void addCustomOptions(bpo::options_description&) {} FairMQDevicePtr getDevice(const fair::mq::ProgOptions& /*config*/) { return new Sink(); }