[Support] Remove unused includes (NFC) (#116752)
[llvm-project.git] / flang / runtime / format.cpp
blob433acce4b73739d0a80ae4f9799c7d4d79dd732d
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 //===----------------------------------------------------------------------===//
9 #include "format-implementation.h"
11 namespace Fortran::runtime::io {
12 RT_OFFLOAD_API_GROUP_BEGIN
13 template class FormatControl<
14 InternalFormattedIoStatementState<Direction::Output>>;
15 template class FormatControl<
16 InternalFormattedIoStatementState<Direction::Input>>;
17 template class FormatControl<
18 ExternalFormattedIoStatementState<Direction::Output>>;
19 template class FormatControl<
20 ExternalFormattedIoStatementState<Direction::Input>>;
21 template class FormatControl<ChildFormattedIoStatementState<Direction::Output>>;
22 template class FormatControl<ChildFormattedIoStatementState<Direction::Input>>;
23 RT_OFFLOAD_API_GROUP_END
24 } // namespace Fortran::runtime::io