From 4f050a38980c11bd68f8310d27a4328e0f478edc Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Tue, 3 Feb 2015 10:25:34 +0100 Subject: [PATCH] plugins/{Mfcc,MelEnergy}.cpp: add unused attribute to avoid compilation warning --- plugins/MelEnergy.cpp | 2 +- plugins/Mfcc.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/MelEnergy.cpp b/plugins/MelEnergy.cpp index 40f9aeb..a69b8be 100644 --- a/plugins/MelEnergy.cpp +++ b/plugins/MelEnergy.cpp @@ -197,7 +197,7 @@ MelEnergy::getOutputDescriptors() const MelEnergy::FeatureSet MelEnergy::process(const float *const *inputBuffers, - Vamp::RealTime timestamp) + __attribute__((unused)) Vamp::RealTime timestamp) { FeatureSet returnFeatures; diff --git a/plugins/Mfcc.cpp b/plugins/Mfcc.cpp index 4460df5..fa632e7 100644 --- a/plugins/Mfcc.cpp +++ b/plugins/Mfcc.cpp @@ -208,7 +208,7 @@ Mfcc::getOutputDescriptors() const Mfcc::FeatureSet Mfcc::process(const float *const *inputBuffers, - Vamp::RealTime timestamp) + __attribute__((unused)) Vamp::RealTime timestamp) { FeatureSet returnFeatures; -- 2.11.0