summaryrefslogtreecommitdiff
path: root/include/threadengines
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-06-24 12:36:38 +0200
committerAttila Molnar <attilamolnar@hush.com>2014-06-24 12:36:38 +0200
commitee08a00d1ba447072484f96c445e985f15f48e49 (patch)
treeb417d4b2f20635d4e818634a6b9261c5ca1ee386 /include/threadengines
parent024906dbcdfd1e48898167695712a6c9e0fc7e9a (diff)
Remove the unused ThreadEngine::GetName() method from both implementations
Diffstat (limited to 'include/threadengines')
-rw-r--r--include/threadengines/threadengine_pthread.h8
-rw-r--r--include/threadengines/threadengine_win32.h8
2 files changed, 0 insertions, 16 deletions
diff --git a/include/threadengines/threadengine_pthread.h b/include/threadengines/threadengine_pthread.h
index 253e8d223..e86c0b1bb 100644
--- a/include/threadengines/threadengine_pthread.h
+++ b/include/threadengines/threadengine_pthread.h
@@ -52,14 +52,6 @@ class CoreExport ThreadEngine
* derived object.
*/
void Start(Thread* thread_to_init);
-
- /** Returns the thread engine's name for display purposes
- * @return The thread engine name
- */
- const std::string GetName()
- {
- return "posix-thread";
- }
};
class CoreExport ThreadData
diff --git a/include/threadengines/threadengine_win32.h b/include/threadengines/threadengine_win32.h
index 59848bd44..45be0ff06 100644
--- a/include/threadengines/threadengine_win32.h
+++ b/include/threadengines/threadengine_win32.h
@@ -52,14 +52,6 @@ class CoreExport ThreadEngine
* derived object.
*/
void Start(Thread* thread_to_init);
-
- /** Returns the thread engine's name for display purposes
- * @return The thread engine name
- */
- const std::string GetName()
- {
- return "windows-thread";
- }
};
class CoreExport ThreadData