mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:47:35 +00:00
AK: Deprecate the old AK::Stream
This also removes a few cases where the respective header wasn't actually required to be included.
This commit is contained in:
parent
230cb3b0cb
commit
ae64b68717
38 changed files with 116 additions and 120 deletions
|
@ -4,6 +4,7 @@
|
|||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <AK/DeprecatedStream.h>
|
||||
#include <AK/Try.h>
|
||||
#include <AK/Utf8View.h>
|
||||
#include <LibCrypto/ASN1/DER.h>
|
||||
|
@ -223,7 +224,7 @@ Optional<DecodeError> Decoder::leave()
|
|||
return {};
|
||||
}
|
||||
|
||||
void pretty_print(Decoder& decoder, OutputStream& stream, int indent)
|
||||
void pretty_print(Decoder& decoder, DeprecatedOutputStream& stream, int indent)
|
||||
{
|
||||
while (!decoder.eof()) {
|
||||
auto tag = decoder.peek();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue