From 04b4d70f38402b1e4e4751157f42eb558bd60f9c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 23 Sep 2018 19:06:25 +0200 Subject: Use override specifiers --- src/server/GraphImpl.hpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/server/GraphImpl.hpp') diff --git a/src/server/GraphImpl.hpp b/src/server/GraphImpl.hpp index d0dd8b7d..384566bf 100644 --- a/src/server/GraphImpl.hpp +++ b/src/server/GraphImpl.hpp @@ -59,23 +59,23 @@ public: virtual ~GraphImpl(); - virtual GraphType graph_type() const { return GraphType::GRAPH; } + GraphType graph_type() const override { return GraphType::GRAPH; } BlockImpl* duplicate(Engine& engine, const Raul::Symbol& symbol, - GraphImpl* parent); + GraphImpl* parent) override; - void activate(BufferFactory& bufs); - void deactivate(); + void activate(BufferFactory& bufs) override; + void deactivate() override; - void pre_process(RunContext& context); - void process(RunContext& context); - void run(RunContext& context); + void pre_process(RunContext& context) override; + void process(RunContext& context) override; + void run(RunContext& context) override; void set_buffer_size(RunContext& context, BufferFactory& bufs, LV2_URID type, - uint32_t size); + uint32_t size) override; /** Prepare for a new (internal) polyphony value. * -- cgit v1.2.1