mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-01 18:39:16 +00:00
refactor(kernel): use default constructor for std::exception class
Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user