brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.0 KiB · ee0059f Raw
25 lines · cpp
1//===-- lib/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-exception6//7//===----------------------------------------------------------------------===//8 9#include "flang-rt/runtime/format-implementation.h"10 11namespace Fortran::runtime::io {12RT_OFFLOAD_API_GROUP_BEGIN13template class FormatControl<14    InternalFormattedIoStatementState<Direction::Output>>;15template class FormatControl<16    InternalFormattedIoStatementState<Direction::Input>>;17template class FormatControl<18    ExternalFormattedIoStatementState<Direction::Output>>;19template class FormatControl<20    ExternalFormattedIoStatementState<Direction::Input>>;21template class FormatControl<ChildFormattedIoStatementState<Direction::Output>>;22template class FormatControl<ChildFormattedIoStatementState<Direction::Input>>;23RT_OFFLOAD_API_GROUP_END24} // namespace Fortran::runtime::io25