diff options
author | David Robillard <d@drobilla.net> | 2016-10-01 19:50:38 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2016-10-01 19:50:38 -0400 |
commit | c73c877f8bd09e0d5a6663ea5ba32a54465f5376 (patch) | |
tree | 185f2da0e58e1c2ab75c4d9db851cf6fc7ca90ee /ingen | |
parent | 604015aa65de7d84f177b53e578a8c9852d7893f (diff) | |
download | ingen-c73c877f8bd09e0d5a6663ea5ba32a54465f5376.tar.gz ingen-c73c877f8bd09e0d5a6663ea5ba32a54465f5376.tar.bz2 ingen-c73c877f8bd09e0d5a6663ea5ba32a54465f5376.zip |
Fix OSX build
Diffstat (limited to 'ingen')
-rw-r--r-- | ingen/SocketWriter.hpp | 2 | ||||
-rw-r--r-- | ingen/StreamWriter.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ingen/SocketWriter.hpp b/ingen/SocketWriter.hpp index 871a63f5..e8b522f6 100644 --- a/ingen/SocketWriter.hpp +++ b/ingen/SocketWriter.hpp @@ -34,7 +34,7 @@ public: const Raul::URI& uri, SPtr<Raul::Socket> sock); - size_t text_sink(const void* buf, size_t len) override; + size_t text_sink(const void* buf, size_t len); /** Override of bundle_end to terminate bundles in the stream. */ void bundle_end(); diff --git a/ingen/StreamWriter.hpp b/ingen/StreamWriter.hpp index 7a62382c..cefd51cc 100644 --- a/ingen/StreamWriter.hpp +++ b/ingen/StreamWriter.hpp @@ -35,7 +35,7 @@ public: FILE* stream, ColorContext::Color color); - size_t text_sink(const void* buf, size_t len) override; + size_t text_sink(const void* buf, size_t len); protected: FILE* _stream; |