[PATCH] D88711: [flang] Fix mis-matched struct/class declarations
Tim Keith via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 1 16:51:37 PDT 2020
tskeith created this revision.
tskeith added a reviewer: klausler.
tskeith added a project: Flang.
Herald added a reviewer: jdoerfert.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
tskeith requested review of this revision.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D88711
Files:
flang/runtime/io-stmt.h
Index: flang/runtime/io-stmt.h
===================================================================
--- flang/runtime/io-stmt.h
+++ flang/runtime/io-stmt.h
@@ -162,9 +162,8 @@
bool lastWasUndelimitedCharacter{false};
};
template <>
-class ListDirectedStatementState<Direction::Input>
+struct ListDirectedStatementState<Direction::Input>
: public FormattedIoStatementState {
-public:
// Skips value separators, handles repetition and null values.
// Vacant when '/' appears; present with descriptor == ListDirectedNullValue
// when a null value appears.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D88711.295690.patch
Type: text/x-patch
Size: 571 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20201001/fbe674d5/attachment.bin>
More information about the llvm-commits
mailing list