blob: 254e37ad0edaf7603e511fac0ce6bcdd03b5084b [file] [log] [blame]
// Copyright 2023 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <ostream>
#include "core/fxcrt/bytestring.h"
namespace fxcrt {
void PrintTo(const ByteString& str, std::ostream* os) {
*os << str;
}
} // namespace fxcrt