diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-07-26 22:13:52 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-07-26 22:13:52 +0200 |
| commit | 705c98d47937d603e3ad569cc2ade12fa1df3677 (patch) | |
| tree | 6cd980e01943a87126ec51a248ffc4f03a195e5f /kapi | |
| parent | 4b28e4626e744ac9b779a680f8e9647014956dda (diff) | |
| download | kernel-705c98d47937d603e3ad569cc2ade12fa1df3677.tar.xz kernel-705c98d47937d603e3ad569cc2ade12fa1df3677.zip | |
build: add tsan build
Diffstat (limited to 'kapi')
| -rw-r--r-- | kapi/kapi/devices/bus.hpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kapi/kapi/devices/bus.hpp b/kapi/kapi/devices/bus.hpp index 2ee12628..3a0ba6a6 100644 --- a/kapi/kapi/devices/bus.hpp +++ b/kapi/kapi/devices/bus.hpp @@ -13,8 +13,6 @@ #include <kstd/string.hpp> #include <kstd/vector.hpp> -#include <span> - namespace kapi::devices { @@ -57,7 +55,7 @@ namespace kapi::devices //! Get the children attached to this bus. //! //! @return A vector of all children attached to this bus. - [[nodiscard]] auto children() const -> std::span<kstd::shared_ptr<device> const>; + [[nodiscard]] auto children() const -> kstd::vector<kstd::shared_ptr<device>>; protected: //! All busses have the "bus" facet. |
