aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-07-25 00:09:21 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-07-25 00:09:21 +0200
commit4c7b7aa2d3fb765d71dfd26e25fce4f9086432ee (patch)
treed83e2eff88e7789738ebf529cc4d23e7ff4b5628
parent40b8dcdbc77d5d845f9eaeb9fa4440a799727c6a (diff)
downloadkernel-4c7b7aa2d3fb765d71dfd26e25fce4f9086432ee.tar.xz
kernel-4c7b7aa2d3fb765d71dfd26e25fce4f9086432ee.zip
kapi: fix missing member implementation
-rw-r--r--kapi/kapi/capabilities/interface_id.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/kapi/kapi/capabilities/interface_id.hpp b/kapi/kapi/capabilities/interface_id.hpp
index 5ddae585..2bd6097d 100644
--- a/kapi/kapi/capabilities/interface_id.hpp
+++ b/kapi/kapi/capabilities/interface_id.hpp
@@ -17,7 +17,10 @@ namespace kapi::capabilities
{}
//! Get the name of this interface.
- [[nodiscard]] constexpr auto name() const noexcept -> std::string_view const &;
+ [[nodiscard]] constexpr auto name() const noexcept -> std::string_view const &
+ {
+ return m_name;
+ }
//! Check if this interface is equal to another one.
constexpr auto operator==(interface_id const &) const noexcept -> bool = default;