summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-08-08 01:02:47 +0000
committerDavid Robillard <d@drobilla.net>2014-08-08 01:02:47 +0000
commit32b6e2f295b2aa5f01afe31115d4aac62feedc09 (patch)
tree58900584a3457d0c99a8defddcf7c3e7de5b8ad2
parentf368c50e3798bb21a309310ab333ce4677124b7e (diff)
downloadingen-32b6e2f295b2aa5f01afe31115d4aac62feedc09.tar.gz
ingen-32b6e2f295b2aa5f01afe31115d4aac62feedc09.tar.bz2
ingen-32b6e2f295b2aa5f01afe31115d4aac62feedc09.zip
Fix compilation with GCC 4.6.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5419 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--ingen/client/ThreadedSigClientInterface.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ingen/client/ThreadedSigClientInterface.hpp b/ingen/client/ThreadedSigClientInterface.hpp
index dbfe23bb..ab9a7ee9 100644
--- a/ingen/client/ThreadedSigClientInterface.hpp
+++ b/ingen/client/ThreadedSigClientInterface.hpp
@@ -144,8 +144,8 @@ private:
Raul::SRSWQueue<Closure> _sigs;
- using Properties = Resource::Properties;
- using Graph = Resource::Graph;
+ typedef Resource::Properties Properties;
+ typedef Resource::Graph Graph;
sigc::slot<void> bundle_begin_slot;
sigc::slot<void> bundle_end_slot;