aboutsummaryrefslogtreecommitdiff
path: root/tests/Task_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Task_test.cpp')
-rw-r--r--tests/Task_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Task_test.cpp b/tests/Task_test.cpp
index dabe5da2..04f2abcc 100644
--- a/tests/Task_test.cpp
+++ b/tests/Task_test.cpp
@@ -22,7 +22,7 @@ class BasicTask : public Task {
void executeTask() override
{
emitSucceeded();
- };
+ }
};
/* Does nothing. Only used for testing. */
@@ -34,7 +34,7 @@ class BasicTask_MultiStep : public Task {
private:
auto isMultiStep() const -> bool override { return true; }
- void executeTask() override {};
+ void executeTask() override {}
};
class BigConcurrentTask : public ConcurrentTask {