2021-09-02 16:14:01 +08:00
|
|
|
//===-- runtime/format.cpp ------------------------------------------------===//
|
2020-01-10 00:10:57 +08:00
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2020-02-05 08:55:45 +08:00
|
|
|
#include "format-implementation.h"
|
2020-01-10 00:10:57 +08:00
|
|
|
|
2020-01-17 05:51:25 +08:00
|
|
|
namespace Fortran::runtime::io {
|
2020-02-14 06:41:56 +08:00
|
|
|
template class FormatControl<
|
|
|
|
InternalFormattedIoStatementState<Direction::Output>>;
|
|
|
|
template class FormatControl<
|
|
|
|
InternalFormattedIoStatementState<Direction::Input>>;
|
|
|
|
template class FormatControl<
|
|
|
|
ExternalFormattedIoStatementState<Direction::Output>>;
|
|
|
|
template class FormatControl<
|
|
|
|
ExternalFormattedIoStatementState<Direction::Input>>;
|
2021-06-26 01:40:08 +08:00
|
|
|
template class FormatControl<ChildFormattedIoStatementState<Direction::Output>>;
|
|
|
|
template class FormatControl<ChildFormattedIoStatementState<Direction::Input>>;
|
2020-03-29 12:00:16 +08:00
|
|
|
} // namespace Fortran::runtime::io
|