From b4d56d3fdff4243ae2a3fc64934ced2af3187690 Mon Sep 17 00:00:00 2001
From: Chris Robinson <chris.kcat@gmail.com>
Date: Sun, 28 Jul 2019 17:15:34 -0700
Subject: Remove the UNUSED macro

---
 Alc/backends/opensl.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'Alc/backends/opensl.cpp')

diff --git a/Alc/backends/opensl.cpp b/Alc/backends/opensl.cpp
index be483338..452028ea 100644
--- a/Alc/backends/opensl.cpp
+++ b/Alc/backends/opensl.cpp
@@ -198,7 +198,7 @@ OpenSLPlayback::~OpenSLPlayback()
 void OpenSLPlayback::processC(SLAndroidSimpleBufferQueueItf bq, void *context)
 { static_cast<OpenSLPlayback*>(context)->process(bq); }
 
-void OpenSLPlayback::process(SLAndroidSimpleBufferQueueItf UNUSED(bq))
+void OpenSLPlayback::process(SLAndroidSimpleBufferQueueItf)
 {
     /* A note on the ringbuffer usage: The buffer queue seems to hold on to the
      * pointer passed to the Enqueue method, rather than copying the audio.
@@ -650,7 +650,7 @@ OpenSLCapture::~OpenSLCapture()
 void OpenSLCapture::processC(SLAndroidSimpleBufferQueueItf bq, void *context)
 { static_cast<OpenSLCapture*>(context)->process(bq); }
 
-void OpenSLCapture::process(SLAndroidSimpleBufferQueueItf UNUSED(bq))
+void OpenSLCapture::process(SLAndroidSimpleBufferQueueItf)
 {
     /* A new chunk has been written into the ring buffer, advance it. */
     mRing->writeAdvance(1);
-- 
cgit v1.2.3