diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-07-25 00:09:21 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-07-25 00:09:21 +0200 |
| commit | 4c7b7aa2d3fb765d71dfd26e25fce4f9086432ee (patch) | |
| tree | d83e2eff88e7789738ebf529cc4d23e7ff4b5628 | |
| parent | 40b8dcdbc77d5d845f9eaeb9fa4440a799727c6a (diff) | |
| download | kernel-4c7b7aa2d3fb765d71dfd26e25fce4f9086432ee.tar.xz kernel-4c7b7aa2d3fb765d71dfd26e25fce4f9086432ee.zip | |
kapi: fix missing member implementation
| -rw-r--r-- | kapi/kapi/capabilities/interface_id.hpp | 5 |
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; |
