summaryrefslogtreecommitdiffstats
path: root/src/server/InputPort.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/InputPort.cpp
parent3be84c23321551588c023a648344f362af2740b4 (diff)
downloadingen-4257d61b3622b1fe0ed8d67d14c6b204661a82d3.tar.gz
ingen-4257d61b3622b1fe0ed8d67d14c6b204661a82d3.tar.bz2
ingen-4257d61b3622b1fe0ed8d67d14c6b204661a82d3.zip
Cleanup: Remove unused parameter names
Diffstat (limited to 'src/server/InputPort.cpp')
-rw-r--r--src/server/InputPort.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/InputPort.cpp b/src/server/InputPort.cpp
index a82458f1..43816e45 100644
--- a/src/server/InputPort.cpp
+++ b/src/server/InputPort.cpp
@@ -128,7 +128,7 @@ InputPort::setup_buffers(RunContext& ctx, BufferFactory& bufs, uint32_t poly)
}
void
-InputPort::add_arc(RunContext& context, ArcImpl& c)
+InputPort::add_arc(RunContext&, ArcImpl& c)
{
_arcs.push_front(c);
}
@@ -140,7 +140,7 @@ InputPort::remove_arc(ArcImpl& arc)
}
uint32_t
-InputPort::max_tail_poly(RunContext& context) const
+InputPort::max_tail_poly(RunContext&) const
{
return parent_block()->parent_graph()->internal_poly_process();
}