diff options
author | David Robillard <d@drobilla.net> | 2016-12-14 16:49:36 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2016-12-14 16:49:36 -0500 |
commit | 5b41a37d873677cd48049846e00c96afeedacb0a (patch) | |
tree | 0a8b83766c0e454d4d01eb8ab2f03be6599de878 | |
parent | e83ebb983950bd10d499d4abae482c195a0d7458 (diff) | |
download | ingen-5b41a37d873677cd48049846e00c96afeedacb0a.tar.gz ingen-5b41a37d873677cd48049846e00c96afeedacb0a.tar.bz2 ingen-5b41a37d873677cd48049846e00c96afeedacb0a.zip |
Remove override qualifiers
-rw-r--r-- | src/server/DuplexPort.hpp | 2 | ||||
-rw-r--r-- | src/server/InputPort.hpp | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/server/DuplexPort.hpp b/src/server/DuplexPort.hpp index a51c5f55..8d0443a6 100644 --- a/src/server/DuplexPort.hpp +++ b/src/server/DuplexPort.hpp @@ -84,7 +84,7 @@ public: */ void set_driver_buffer(void* buf, uint32_t capacity); - bool setup_buffers(RunContext& ctx, BufferFactory& bufs, uint32_t poly) override; + bool setup_buffers(RunContext& ctx, BufferFactory& bufs, uint32_t poly); void pre_process(RunContext& context); void post_process(RunContext& context); diff --git a/src/server/InputPort.hpp b/src/server/InputPort.hpp index 59e79463..1fa0293d 100644 --- a/src/server/InputPort.hpp +++ b/src/server/InputPort.hpp @@ -95,7 +95,7 @@ public: Raul::Array<Voice>* voices, uint32_t poly) const; - bool setup_buffers(RunContext& ctx, BufferFactory& bufs, uint32_t poly) override; + bool setup_buffers(RunContext& ctx, BufferFactory& bufs, uint32_t poly); /** Set up buffer pointers. */ void pre_process(RunContext& context); @@ -109,9 +109,9 @@ public: SampleCount next_value_offset(SampleCount offset, SampleCount end) const; void update_values(SampleCount offset, uint32_t voice); - size_t num_arcs() const override { return _num_arcs; } - void increment_num_arcs() { ++_num_arcs; } - void decrement_num_arcs() { --_num_arcs; } + size_t num_arcs() const { return _num_arcs; } + void increment_num_arcs() { ++_num_arcs; } + void decrement_num_arcs() { --_num_arcs; } bool direct_connect() const; @@ -120,7 +120,7 @@ protected: PortImpl::GetFn get, Raul::Array<Voice>* voices, uint32_t poly, - size_t num_in_arcs) const override; + size_t num_in_arcs) const; size_t _num_arcs; ///< Pre-process thread Arcs _arcs; ///< Audio thread |