aboutsummaryrefslogtreecommitdiff
path: root/libs/kstd
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-07-12 15:24:40 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-07-12 15:24:40 +0200
commitf54e09351a967da21f863fd2d3b17ffd24d3ee87 (patch)
tree8577f5e19a48f928411ba2b9bb65f34b01725e8a /libs/kstd
parent3aa2680cca25ba5f2e490a601461e09c3f081e3e (diff)
downloadkernel-f54e09351a967da21f863fd2d3b17ffd24d3ee87.tar.xz
kernel-f54e09351a967da21f863fd2d3b17ffd24d3ee87.zip
kernel: integrate kstd system_error facility
Diffstat (limited to 'libs/kstd')
-rw-r--r--libs/kstd/kstd/system_error.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/kstd/kstd/system_error.hpp b/libs/kstd/kstd/system_error.hpp
index 7618db2e..f971703b 100644
--- a/libs/kstd/kstd/system_error.hpp
+++ b/libs/kstd/kstd/system_error.hpp
@@ -467,7 +467,7 @@ namespace kstd
return {static_cast<int>(value), generic_category()};
}
- [[nodiscard]] constexpr auto inline make_error_condition(errc const value) noexcept -> error_code
+ [[nodiscard]] constexpr auto inline make_error_condition(errc const value) noexcept -> error_condition
{
return {static_cast<int>(value), generic_category()};
}