1//===-- runtime/format.cpp ------------------------------------------------===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8
9#include "format-implementation.h"
10
11namespace Fortran::runtime::io {
12template class FormatControl<
13 InternalFormattedIoStatementState<Direction::Output>>;
14template class FormatControl<
15 InternalFormattedIoStatementState<Direction::Input>>;
16template class FormatControl<
17 ExternalFormattedIoStatementState<Direction::Output>>;
18template class FormatControl<
19 ExternalFormattedIoStatementState<Direction::Input>>;
20template class FormatControl<ChildFormattedIoStatementState<Direction::Output>>;
21template class FormatControl<ChildFormattedIoStatementState<Direction::Input>>;
22} // namespace Fortran::runtime::io
23

source code of flang/runtime/format.cpp