1 // Copyright 2023 The PDFium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include <ostream> 6 7 #include "core/fxcrt/bytestring.h" 8 #include "core/fxcrt/widestring.h" 9 10 namespace fxcrt { 11 PrintTo(const ByteString & str,std::ostream * os)12void PrintTo(const ByteString& str, std::ostream* os) { 13 *os << str; 14 } 15 PrintTo(const WideString & str,std::ostream * os)16void PrintTo(const WideString& str, std::ostream* os) { 17 *os << str; 18 } 19 20 } // namespace fxcrt 21