summaryrefslogtreecommitdiff
path: root/Userland/Utilities/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Utilities/test.cpp')
-rw-r--r--Userland/Utilities/test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/test.cpp b/Userland/Utilities/test.cpp
index ef5f79f307..2590787da7 100644
--- a/Userland/Utilities/test.cpp
+++ b/Userland/Utilities/test.cpp
@@ -30,7 +30,7 @@ bool g_there_was_an_error = false;
class Condition {
public:
- virtual ~Condition() { }
+ virtual ~Condition() = default;
virtual bool check() const = 0;
};