1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:17:44 +00:00

Kernel: Make AsyncDeviceRequest::name() return StringView

This commit is contained in:
Andreas Kling 2021-08-05 20:54:37 +02:00
parent beeed90a3f
commit 066d3281b5
4 changed files with 6 additions and 6 deletions

View file

@ -54,7 +54,7 @@ public:
virtual ~AsyncDeviceRequest();
virtual const char* name() const = 0;
virtual StringView name() const = 0;
virtual void start() = 0;
void add_sub_request(NonnullRefPtr<AsyncDeviceRequest>);