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

LibCrypto: Use AK::Stream for pretty printing DER

This commit is contained in:
Tim Schumacher 2023-02-07 23:56:44 +01:00 committed by Linus Groh
parent f5fb1396e8
commit a6bcad551d
2 changed files with 5 additions and 5 deletions

View file

@ -214,6 +214,6 @@ private:
Optional<Tag> m_current_tag;
};
ErrorOr<void> pretty_print(Decoder&, DeprecatedOutputStream&, int indent = 0);
ErrorOr<void> pretty_print(Decoder&, AK::Stream&, int indent = 0);
}