diff options
Diffstat (limited to 'ingen')
-rw-r--r-- | ingen/Store.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ingen/Store.hpp b/ingen/Store.hpp index b8cdfd36..d9a52102 100644 --- a/ingen/Store.hpp +++ b/ingen/Store.hpp @@ -70,10 +70,12 @@ public: const Raul::Symbol& symbol, bool allow_zero=true) const; - std::mutex& mutex() { return _mutex; } + typedef std::recursive_mutex Mutex; + + Mutex& mutex() { return _mutex; } private: - std::mutex _mutex; + Mutex _mutex; }; } // namespace Ingen |