1 //===-- lib/Parser/char-block.cpp -------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //----------------------------------------------------------------------------//
9 #include "flang/Parser/char-block.h"
10 #include "llvm/Support/raw_ostream.h"
12 namespace Fortran::parser
{
14 llvm::raw_ostream
&operator<<(llvm::raw_ostream
&os
, const CharBlock
&x
) {
15 return os
<< x
.ToString();
18 } // namespace Fortran::parser