From 1243943529fde4d5ac5d242ec48b971e81499875 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 19 Dec 2009 21:37:50 +0000 Subject: New ingen module (library, not e.g. LV2 plugin) design. Much cleaner interface and general usage of Ingen as a library. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2314 a436a847-0d15-0410-975c-d299462d15a1 --- src/Thread.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Thread.cpp') diff --git a/src/Thread.cpp b/src/Thread.cpp index f5ba09f..0449515 100644 --- a/src/Thread.cpp +++ b/src/Thread.cpp @@ -28,7 +28,7 @@ pthread_once_t Thread::_thread_key_once = PTHREAD_ONCE_INIT; pthread_key_t Thread::_thread_key; -Thread::Thread(const string& name) +Thread::Thread(const std::string& name) : _exit_flag(false) , _context(0) , _name(name) @@ -41,7 +41,7 @@ Thread::Thread(const string& name) /** Must be called from thread */ -Thread::Thread(pthread_t thread, const string& name) +Thread::Thread(pthread_t thread, const std::string& name) : _exit_flag(false) , _context(0) , _name(name) -- cgit v1.2.1