summaryrefslogtreecommitdiffstats
path: root/raul
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-15 21:58:45 +0000
committerDavid Robillard <d@drobilla.net>2012-08-15 21:58:45 +0000
commit7f5e8664ea8e5e2ee580c093aa61b4451b2578a5 (patch)
treeba4e37a4bc8e36f4d65f30a96f71dcb7390935d5 /raul
parentc97fc5c70a350e951430ee07e0eb5de8b2765f8b (diff)
downloadraul-7f5e8664ea8e5e2ee580c093aa61b4451b2578a5.tar.gz
raul-7f5e8664ea8e5e2ee580c093aa61b4451b2578a5.tar.bz2
raul-7f5e8664ea8e5e2ee580c093aa61b4451b2578a5.zip
Remove unused Raul::Thread::get().
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4706 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'raul')
-rw-r--r--raul/Thread.hpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/raul/Thread.hpp b/raul/Thread.hpp
index 0eb3a9e..02a5e3a 100644
--- a/raul/Thread.hpp
+++ b/raul/Thread.hpp
@@ -30,8 +30,6 @@ struct ThreadImpl;
* Extend this and override the _run method to easily create a thread
* to perform some task.
*
- * The current Thread can be accessed using the get() method.
- *
* \ingroup raul
*/
class Thread : Noncopyable
@@ -39,13 +37,6 @@ class Thread : Noncopyable
public:
virtual ~Thread();
- /** Return the calling thread.
- *
- * If the calling thread does not yet have a Thread object associated with
- * it yet, one will be created with the given name.
- */
- static Thread& get(const std::string& name="");
-
/** Start the thread if it is not already running. */
virtual void start();