util/*FifoBuffer: migrate from WritableBuffer to std::span

This commit is contained in:
Max Kellermann
2022-05-10 17:26:41 +02:00
committed by Max Kellermann
parent 570755f05a
commit bb7be9a4cd
23 changed files with 114 additions and 129 deletions

View File

@@ -103,7 +103,7 @@ public:
*/
pointer Write(size_type n) noexcept {
WantWrite(n);
return Write().data;
return Write().data();
}
/**