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

LibCompress/Gzip: Replace usage of DeprecatedString

This commit is contained in:
tgsm 2023-06-15 22:35:33 -05:00 committed by Andreas Kling
parent 7990f1b85a
commit c30775522e
3 changed files with 7 additions and 7 deletions

View file

@ -54,7 +54,7 @@ public:
static ErrorOr<ByteBuffer> decompress_all(ReadonlyBytes);
static ErrorOr<void> decompress_file(StringView input_file, NonnullOwnPtr<Stream> output_stream);
static Optional<DeprecatedString> describe_header(ReadonlyBytes);
static ErrorOr<Optional<String>> describe_header(ReadonlyBytes);
static bool is_likely_compressed(ReadonlyBytes bytes);
private: