| // 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" | |
| #include "core/fxcrt/widestring.h" | |
| namespace fxcrt { | |
| void PrintTo(const ByteString& str, std::ostream* os) { | |
| *os << str; | |
| } | |
| void PrintTo(const WideString& str, std::ostream* os) { | |
| *os << str; | |
| } | |
| } // namespace fxcrt |