mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-08-17 01:04:15 +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
|
class exception
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
exception() noexcept {}
|
exception() noexcept = default;
|
||||||
exception(const exception &) noexcept = default;
|
exception(const exception &) noexcept = default;
|
||||||
virtual ~exception() noexcept = default;
|
virtual ~exception() noexcept = default;
|
||||||
exception &operator=(const exception &) noexcept = default;
|
exception &operator=(const exception &) noexcept = default;
|
||||||
|
Reference in New Issue
Block a user