summaryrefslogtreecommitdiffstats
path: root/src/server/Buffer.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-12-08 19:34:41 +0100
committerDavid Robillard <d@drobilla.net>2019-12-08 20:59:06 +0100
commit4257d61b3622b1fe0ed8d67d14c6b204661a82d3 (patch)
tree1b503cadbbe7781b1cbf515fd4ce975f9ba815f5 /src/server/Buffer.cpp
parent3be84c23321551588c023a648344f362af2740b4 (diff)
downloadingen-4257d61b3622b1fe0ed8d67d14c6b204661a82d3.tar.gz
ingen-4257d61b3622b1fe0ed8d67d14c6b204661a82d3.tar.bz2
ingen-4257d61b3622b1fe0ed8d67d14c6b204661a82d3.zip
Cleanup: Remove unused parameter names
Diffstat (limited to 'src/server/Buffer.cpp')
-rw-r--r--src/server/Buffer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/Buffer.cpp b/src/server/Buffer.cpp
index 21a757c6..fffc86b0 100644
--- a/src/server/Buffer.cpp
+++ b/src/server/Buffer.cpp
@@ -48,7 +48,7 @@ Buffer::Buffer(BufferFactory& bufs,
LV2_URID value_type,
uint32_t capacity,
bool external,
- void* buf)
+ void*)
: _factory(bufs)
, _next(nullptr)
, _buf(external ? nullptr : aligned_alloc(capacity))
@@ -267,7 +267,7 @@ Buffer::peak(const RunContext& context) const
}
void
-Buffer::prepare_write(RunContext& context)
+Buffer::prepare_write(RunContext&)
{
if (_type == _factory.uris().atom_Sequence) {
auto* atom = get<LV2_Atom>();
@@ -279,7 +279,7 @@ Buffer::prepare_write(RunContext& context)
}
void
-Buffer::prepare_output_write(RunContext& context)
+Buffer::prepare_output_write(RunContext&)
{
if (_type == _factory.uris().atom_Sequence) {
auto* atom = get<LV2_Atom>();