aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2023-08-10 20:41:52 +0200
committerSefa Eyeoglu <contact@scrumplex.net>2023-08-11 10:57:57 +0200
commitea43d0f687391db08459ea43794ee97b93e654fa (patch)
tree76a8bbbbe3fe4bb0518da61970732432c2e3d02b /tests
parentef6f9487f48ee6f114d47108977380fb4c278597 (diff)
downloadPrismLauncher-ea43d0f687391db08459ea43794ee97b93e654fa.tar.gz
PrismLauncher-ea43d0f687391db08459ea43794ee97b93e654fa.tar.bz2
PrismLauncher-ea43d0f687391db08459ea43794ee97b93e654fa.zip
fix: fix more warnings
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'tests')
-rw-r--r--tests/Task_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Task_test.cpp b/tests/Task_test.cpp
index eae3527d..5bc73765 100644
--- a/tests/Task_test.cpp
+++ b/tests/Task_test.cpp
@@ -19,7 +19,7 @@ class BasicTask : public Task {
BasicTask(bool show_debug_log = true) : Task(nullptr, show_debug_log) {}
private:
- void executeTask() override { emitSucceeded(); };
+ void executeTask() override { emitSucceeded(); }
};
/* Does nothing. Only used for testing. */