From ff4c3ff14e76e5b06f1b4c44f03f900e1bd4ac50 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 14 May 2012 05:45:15 +0000 Subject: Clean up Thread interface. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4411 a436a847-0d15-0410-975c-d299462d15a1 --- raul/Slave.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'raul/Slave.hpp') diff --git a/raul/Slave.hpp b/raul/Slave.hpp index e148cff..593d5e2 100644 --- a/raul/Slave.hpp +++ b/raul/Slave.hpp @@ -32,7 +32,7 @@ namespace Raul { class Slave : public Thread { public: - Slave() : _whip(0) {} + explicit Slave(const std::string& name="") : Thread(name), _whip(0) {} /** Tell the slave to do whatever work it does. Realtime safe. */ inline void whip() { _whip.post(); } -- cgit v1.2.1