summaryrefslogtreecommitdiffstats
path: root/test/sem_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/sem_test.cpp')
-rw-r--r--test/sem_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sem_test.cpp b/test/sem_test.cpp
index 7e06693..1836317 100644
--- a/test/sem_test.cpp
+++ b/test/sem_test.cpp
@@ -26,8 +26,8 @@ using namespace Raul;
class Waiter : public Raul::Thread {
public:
- Waiter(Semaphore& sem) : Raul::Thread("Waiter"), _sem(sem) {
- }
+ Waiter(Semaphore& sem) : Raul::Thread(), _sem(sem)
+ {}
private:
void _run() {