refactor(kernel): use default constructor for std::exception class

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
EnderIce2 2025-04-04 10:54:33 +00:00
parent a333d8aa7c
commit 5c1c26b135
Signed by: enderice2
GPG Key ID: FEB6B8A8507BA62E

View File

@ -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;