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 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 25