diff --git a/Kernel/include_std/exception b/Kernel/include_std/exception index 8562d41e..145288e0 100644 --- a/Kernel/include_std/exception +++ b/Kernel/include_std/exception @@ -24,7 +24,7 @@ namespace std class exception { public: - exception() noexcept {} + exception() noexcept = default; exception(const exception &) noexcept = default; virtual ~exception() noexcept = default; exception &operator=(const exception &) noexcept = default;