diff options
author | David Robillard <d@drobilla.net> | 2018-01-16 21:21:20 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-01-16 21:25:35 +0100 |
commit | 34fb90e18a20cfc780cdef660e6da391baf1bcde (patch) | |
tree | 9191fc2257f4fa636e0d30b233ce176d33126cfd /ingen | |
parent | 9dfdf5d1d36f90aaa9a9d0d165d62b744dde837b (diff) | |
download | ingen-34fb90e18a20cfc780cdef660e6da391baf1bcde.tar.gz ingen-34fb90e18a20cfc780cdef660e6da391baf1bcde.tar.bz2 ingen-34fb90e18a20cfc780cdef660e6da391baf1bcde.zip |
Fix build with C++11
Diffstat (limited to 'ingen')
-rw-r--r-- | ingen/Interface.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ingen/Interface.hpp b/ingen/Interface.hpp index e22add9a..2221f8f0 100644 --- a/ingen/Interface.hpp +++ b/ingen/Interface.hpp @@ -47,6 +47,8 @@ class Atom; class INGEN_API Interface { public: + using result_type = void; + Interface() : _seq(0) {} virtual ~Interface() = default; |