summaryrefslogtreecommitdiffstats
path: root/src/server/BlockImpl.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/BlockImpl.cpp
parent3be84c23321551588c023a648344f362af2740b4 (diff)
downloadingen-4257d61b3622b1fe0ed8d67d14c6b204661a82d3.tar.gz
ingen-4257d61b3622b1fe0ed8d67d14c6b204661a82d3.tar.bz2
ingen-4257d61b3622b1fe0ed8d67d14c6b204661a82d3.zip
Cleanup: Remove unused parameter names
Diffstat (limited to 'src/server/BlockImpl.cpp')
-rw-r--r--src/server/BlockImpl.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/server/BlockImpl.cpp b/src/server/BlockImpl.cpp
index abea85eb..d4d60e5c 100644
--- a/src/server/BlockImpl.cpp
+++ b/src/server/BlockImpl.cpp
@@ -39,7 +39,7 @@ BlockImpl::BlockImpl(PluginImpl* plugin,
const Raul::Symbol& symbol,
bool polyphonic,
GraphImpl* parent,
- SampleRate srate)
+ SampleRate)
: NodeImpl(plugin->uris(), parent, symbol)
, _plugin(plugin)
, _polyphony((polyphonic && parent) ? parent->internal_poly() : 1)
@@ -294,10 +294,7 @@ BlockImpl::post_process(RunContext& context)
}
void
-BlockImpl::set_port_buffer(uint32_t voice,
- uint32_t port_num,
- const BufferRef& buf,
- SampleCount offset)
+BlockImpl::set_port_buffer(uint32_t, uint32_t, const BufferRef&, SampleCount)
{
/*std::cout << path() << " set port " << port_num << " voice " << voice
<< " buffer " << buf << " offset " << offset << std::endl;*/