Everywhere: Pass AK::ReadonlyBytes by value

This commit is contained in:
Andreas Kling
2021-11-11 01:06:34 +01:00
parent 8b1108e485
commit 80d4e830a0
Notes: sideshowbarker 2024-07-18 01:17:46 +09:00
42 changed files with 96 additions and 96 deletions

View File

@@ -157,7 +157,7 @@ private:
class PlainTextStreamObject final : public StreamObject {
public:
PlainTextStreamObject(NonnullRefPtr<DictObject> const& dict, ReadonlyBytes const& bytes)
PlainTextStreamObject(NonnullRefPtr<DictObject> const& dict, ReadonlyBytes bytes)
: StreamObject(dict)
, m_bytes(bytes)
{