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

HackStudio: Mark compilation-unit-only functions as static

This commit is contained in:
Ben Wiederhake 2020-08-28 10:21:05 +02:00 committed by Andreas Kling
parent 1c60ea235e
commit d063dc1e71
2 changed files with 4 additions and 4 deletions

View file

@ -29,7 +29,7 @@
#include <LibCompress/Deflate.h>
#include <LibCompress/Zlib.h>
bool compare(ReadonlyBytes lhs, ReadonlyBytes rhs)
static bool compare(ReadonlyBytes lhs, ReadonlyBytes rhs)
{
if (lhs.size() != rhs.size())
return false;