xref: /llvm-project/flang/runtime/format.cpp (revision 43fadefb0e77c56de7637c391cf98cf709b27095)
1 //===-- runtime/format.cpp --------------------------------------*- C++ -*-===//
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 
11 namespace Fortran::runtime::io {
12 template class FormatControl<
13     InternalFormattedIoStatementState<Direction::Output>>;
14 template class FormatControl<
15     InternalFormattedIoStatementState<Direction::Input>>;
16 template class FormatControl<
17     ExternalFormattedIoStatementState<Direction::Output>>;
18 template class FormatControl<
19     ExternalFormattedIoStatementState<Direction::Input>>;
20 template class FormatControl<ChildFormattedIoStatementState<Direction::Output>>;
21 template class FormatControl<ChildFormattedIoStatementState<Direction::Input>>;
22 } // namespace Fortran::runtime::io
23