1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 12:47:45 +00:00

LibWeb: Implement releaseLock interface for ReadableStreamBYOBReader

This commit is contained in:
Shannon Booth 2023-08-27 13:29:32 +12:00 committed by Andrew Kaster
parent b06d80e6fd
commit 6e9aeccf90
3 changed files with 14 additions and 1 deletions

View file

@ -41,6 +41,8 @@ public:
virtual ~ReadableStreamBYOBReader() override = default;
void release_lock();
Vector<NonnullRefPtr<ReadIntoRequest>>& read_into_requests() { return m_read_into_requests; }
private: