diff options
Diffstat (limited to 'Userland/Utilities/test.cpp')
-rw-r--r-- | Userland/Utilities/test.cpp | 2 |
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; }; |