1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:07:34 +00:00

Refactor: Use ReadonlyBytes instead of const ReadonlyBytes&.

This commit is contained in:
asynts 2020-08-15 18:47:25 +02:00 committed by Andreas Kling
parent fff581cd72
commit fc276946fb
4 changed files with 8 additions and 8 deletions

View file

@ -99,7 +99,7 @@ static int crc32_tests();
// stop listing tests
static void print_buffer(const ReadonlyBytes& buffer, int split)
static void print_buffer(ReadonlyBytes buffer, int split)
{
for (size_t i = 0; i < buffer.size(); ++i) {
if (split > 0) {