diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-07-13 14:20:45 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-07-13 14:20:45 +0200 |
| commit | 3e73968fdad5d476a205be8c86d3b93d5ce7478c (patch) | |
| tree | 5ed81ed93cd80a42e98214f0c0b2de1bb523387e /libs | |
| parent | 9576497d8b3f525754e12b9a9ad7342fcf5da7ef (diff) | |
| download | kernel-3e73968fdad5d476a205be8c86d3b93d5ce7478c.tar.xz kernel-3e73968fdad5d476a205be8c86d3b93d5ce7478c.zip | |
kstd: fix typo in error_code ctor
Diffstat (limited to 'libs')
| -rw-r--r-- | libs/kstd/kstd/system_error.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/kstd/kstd/system_error.hpp b/libs/kstd/kstd/system_error.hpp index 08725609..2f1e38bf 100644 --- a/libs/kstd/kstd/system_error.hpp +++ b/libs/kstd/kstd/system_error.hpp @@ -151,7 +151,7 @@ namespace kstd template<error_code_enum Enum> constexpr error_code(Enum value) noexcept - : error_code{make_error_condition(value)} + : error_code{make_error_code(value)} {} template<error_code_enum Enum> |
