summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibDl/dlfcn_integration.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibDl/dlfcn_integration.h')
-rw-r--r--Userland/Libraries/LibDl/dlfcn_integration.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Libraries/LibDl/dlfcn_integration.h b/Userland/Libraries/LibDl/dlfcn_integration.h
index 19a8251ae2..aa4642d4f3 100644
--- a/Userland/Libraries/LibDl/dlfcn_integration.h
+++ b/Userland/Libraries/LibDl/dlfcn_integration.h
@@ -1,5 +1,6 @@
/*
* Copyright (c) 2021, Gunnar Beutner <gunnar@beutner.name>
+ * Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@@ -18,7 +19,7 @@ struct DlErrorMessage {
// The virtual destructor is required because we're passing this
// struct to the dynamic loader - whose operator delete differs
// from the one in libc.so
- virtual ~DlErrorMessage() { }
+ virtual ~DlErrorMessage() = default;
String text;
};