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

Everywhere: Run clang-format

This commit is contained in:
Idan Horowitz 2022-04-01 20:58:27 +03:00 committed by Linus Groh
parent 0376c127f6
commit 086969277e
1665 changed files with 8479 additions and 8479 deletions

View file

@ -42,7 +42,7 @@ struct [[gnu::packed]] EndOfCentralDirectory {
u32 central_directory_size;
u32 central_directory_offset;
u16 comment_length;
const u8* comment;
u8 const* comment;
bool read(ReadonlyBytes buffer)
{
@ -103,9 +103,9 @@ struct [[gnu::packed]] CentralDirectoryRecord {
u16 internal_attributes;
u32 external_attributes;
u32 local_file_header_offset;
const u8* name;
const u8* extra_data;
const u8* comment;
u8 const* name;
u8 const* extra_data;
u8 const* comment;
bool read(ReadonlyBytes buffer)
{
@ -167,9 +167,9 @@ struct [[gnu::packed]] LocalFileHeader {
u32 uncompressed_size;
u16 name_length;
u16 extra_data_length;
const u8* name;
const u8* extra_data;
const u8* compressed_data;
u8 const* name;
u8 const* extra_data;
u8 const* compressed_data;
bool read(ReadonlyBytes buffer)
{
@ -218,7 +218,7 @@ struct ZipMember {
class Zip {
public:
static Optional<Zip> try_create(ReadonlyBytes buffer);
bool for_each_member(Function<IterationDecision(const ZipMember&)>);
bool for_each_member(Function<IterationDecision(ZipMember const&)>);
private:
static bool find_end_of_central_directory_offset(ReadonlyBytes, size_t& offset);
@ -237,7 +237,7 @@ private:
class ZipOutputStream {
public:
ZipOutputStream(OutputStream&);
void add_member(const ZipMember&);
void add_member(ZipMember const&);
void finish();
private: