We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df00507 commit 84725dbCopy full SHA for 84725db
flang-rt/include/flang-rt/runtime/io-stmt.h
@@ -156,7 +156,7 @@ class IoStatementState {
156
if (at_ && at_ < limit_) {
157
return *at_;
158
} else {
159
- return std::nullopt;
+ return Fortran::common::nullopt;
160
}
161
162
RT_API_ATTRS void NextRecord(IoStatementState &io) {
@@ -200,7 +200,7 @@ class IoStatementState {
200
byteCount = ch ? 1 : 0;
201
return ch;
202
} else if (!field->MustUseSlowPath()) {
203
204
205
206
return GetCurrentCharSlow(byteCount);
0 commit comments