summaryrefslogtreecommitdiffstats
path: root/src/server/Buffer.cpp
diff options
context:
space:
mode:
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>();