From eef993daeaedfdcde1d580d860843f06dc8b8892 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 3 Feb 2013 17:12:00 +0000 Subject: Fix compilation with Clang 3.1. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5039 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/ingen_gui_lv2.cpp | 4 ++++ src/server/Broadcaster.hpp | 3 ++- src/server/LV2Options.hpp | 3 ++- 3 files changed, 8 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/gui/ingen_gui_lv2.cpp b/src/gui/ingen_gui_lv2.cpp index 8f258e99..061f2276 100644 --- a/src/gui/ingen_gui_lv2.cpp +++ b/src/gui/ingen_gui_lv2.cpp @@ -88,6 +88,10 @@ instantiate(const LV2UI_Descriptor* descriptor, LV2UI_Widget* widget, const LV2_Feature* const* features) { +#if __cplusplus >= 201103L + using Ingen::SPtr; +#endif + Ingen::set_bundle_path(bundle_path); Ingen::IngenLV2UI* ui = new Ingen::IngenLV2UI(); diff --git a/src/server/Broadcaster.hpp b/src/server/Broadcaster.hpp index 5de5ec8f..ba471bc2 100644 --- a/src/server/Broadcaster.hpp +++ b/src/server/Broadcaster.hpp @@ -64,7 +64,8 @@ public: * This makes doing the right thing in recursive functions that send * updates simple (e.g. Event::post_process()). */ - struct Transfer : public Raul::Noncopyable { + class Transfer : public Raul::Noncopyable { + public: explicit Transfer(Broadcaster& b) : broadcaster(b) { if (++broadcaster._bundle_depth == 1) { broadcaster.bundle_begin(); diff --git a/src/server/LV2Options.hpp b/src/server/LV2Options.hpp index cc42d68c..6856fe28 100644 --- a/src/server/LV2Options.hpp +++ b/src/server/LV2Options.hpp @@ -28,7 +28,8 @@ namespace Ingen { namespace Server { -struct LV2Options : public Ingen::LV2Features::Feature { +class LV2Options : public Ingen::LV2Features::Feature { +public: explicit LV2Options(Engine& engine) : _block_length(0) , _seq_size(0) -- cgit v1.2.1