From 87e093b5fb0191339c7502f9425bae68b3d8ab9b Mon Sep 17 00:00:00 2001
From: Aaron Cuevas Lopez <aacuelo@teleco.upv.es>
Date: Mon, 9 Jan 2017 20:46:28 +0100
Subject: [PATCH] Update CAR plugin

---
 Source/Plugins/CAR/CAR.cpp | 2 +-
 Source/Plugins/CAR/CAR.h   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Source/Plugins/CAR/CAR.cpp b/Source/Plugins/CAR/CAR.cpp
index 8d9bdc211..036963aa2 100644
--- a/Source/Plugins/CAR/CAR.cpp
+++ b/Source/Plugins/CAR/CAR.cpp
@@ -61,7 +61,7 @@ void CAR::setGainLevel (float newGain)
 }
 
 
-void CAR::process (AudioSampleBuffer& buffer, MidiBuffer& events)
+void CAR::process (AudioSampleBuffer& buffer)
 {
     const int numSamples            = buffer.getNumSamples();
     const int numReferenceChannels  = m_referenceChannels.size();
diff --git a/Source/Plugins/CAR/CAR.h b/Source/Plugins/CAR/CAR.h
index ba65f6e15..2ee61c1a4 100644
--- a/Source/Plugins/CAR/CAR.h
+++ b/Source/Plugins/CAR/CAR.h
@@ -60,7 +60,7 @@ public:
         number of continous samples in the current buffer (which may differ from the
         size of the buffer).
     */
-    void process (AudioSampleBuffer& buffer, MidiBuffer& events) override;
+    void process (AudioSampleBuffer& buffer) override;
 
     /** Returns the current gain level that is set in the processor */
     float getGainLevel();
-- 
GitLab