diff options
author | David Robillard <d@drobilla.net> | 2014-08-08 01:02:47 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-08-08 01:02:47 +0000 |
commit | 32b6e2f295b2aa5f01afe31115d4aac62feedc09 (patch) | |
tree | 58900584a3457d0c99a8defddcf7c3e7de5b8ad2 /ingen/client/ThreadedSigClientInterface.hpp | |
parent | f368c50e3798bb21a309310ab333ce4677124b7e (diff) | |
download | ingen-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
Diffstat (limited to 'ingen/client/ThreadedSigClientInterface.hpp')
-rw-r--r-- | ingen/client/ThreadedSigClientInterface.hpp | 4 |
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; |