@@ -42,22 +42,22 @@ inline A &ExtractElement(IoStatementState &io, const Descriptor &descriptor,
42
42
// automatic repetition counts, like "10*3.14159", for list-directed and
43
43
// NAMELIST array output.
44
44
45
- template <typename A , Direction DIR>
45
+ template <int KIND , Direction DIR>
46
46
inline bool FormattedIntegerIO (
47
47
IoStatementState &io, const Descriptor &descriptor) {
48
48
std::size_t numElements{descriptor.Elements ()};
49
49
SubscriptValue subscripts[maxRank];
50
50
descriptor.GetLowerBounds (subscripts);
51
+ using IntType = CppTypeFor<TypeCategory::Integer, KIND>;
51
52
for (std::size_t j{0 }; j < numElements; ++j) {
52
53
if (auto edit{io.GetNextDataEdit ()}) {
53
- A &x{ExtractElement<A >(io, descriptor, subscripts)};
54
+ IntType &x{ExtractElement<IntType >(io, descriptor, subscripts)};
54
55
if constexpr (DIR == Direction::Output) {
55
- if (!EditIntegerOutput (io, *edit, static_cast <std:: int64_t >(x) )) {
56
+ if (!EditIntegerOutput<KIND> (io, *edit, x )) {
56
57
return false ;
57
58
}
58
59
} else if (edit->descriptor != DataEdit::ListDirectedNullValue) {
59
- if (!EditIntegerInput (io, *edit, reinterpret_cast <void *>(&x),
60
- static_cast <int >(sizeof (A)))) {
60
+ if (!EditIntegerInput (io, *edit, reinterpret_cast <void *>(&x), KIND)) {
61
61
return false ;
62
62
}
63
63
}
@@ -183,15 +183,16 @@ inline bool FormattedCharacterIO(
183
183
return true ;
184
184
}
185
185
186
- template <typename A , Direction DIR>
186
+ template <int KIND , Direction DIR>
187
187
inline bool FormattedLogicalIO (
188
188
IoStatementState &io, const Descriptor &descriptor) {
189
189
std::size_t numElements{descriptor.Elements ()};
190
190
SubscriptValue subscripts[maxRank];
191
191
descriptor.GetLowerBounds (subscripts);
192
192
auto *listOutput{io.get_if <ListDirectedStatementState<Direction::Output>>()};
193
+ using IntType = CppTypeFor<TypeCategory::Integer, KIND>;
193
194
for (std::size_t j{0 }; j < numElements; ++j) {
194
- A &x{ExtractElement<A >(io, descriptor, subscripts)};
195
+ IntType &x{ExtractElement<IntType >(io, descriptor, subscripts)};
195
196
if (listOutput) {
196
197
if (!ListDirectedLogicalOutput (io, *listOutput, x != 0 )) {
197
198
return false ;
@@ -377,20 +378,15 @@ static bool DescriptorIO(IoStatementState &io, const Descriptor &descriptor) {
377
378
case TypeCategory::Integer:
378
379
switch (kind) {
379
380
case 1 :
380
- return FormattedIntegerIO<CppTypeFor<TypeCategory::Integer, 1 >, DIR>(
381
- io, descriptor);
381
+ return FormattedIntegerIO<1 , DIR>(io, descriptor);
382
382
case 2 :
383
- return FormattedIntegerIO<CppTypeFor<TypeCategory::Integer, 2 >, DIR>(
384
- io, descriptor);
383
+ return FormattedIntegerIO<2 , DIR>(io, descriptor);
385
384
case 4 :
386
- return FormattedIntegerIO<CppTypeFor<TypeCategory::Integer, 4 >, DIR>(
387
- io, descriptor);
385
+ return FormattedIntegerIO<4 , DIR>(io, descriptor);
388
386
case 8 :
389
- return FormattedIntegerIO<CppTypeFor<TypeCategory::Integer, 8 >, DIR>(
390
- io, descriptor);
387
+ return FormattedIntegerIO<8 , DIR>(io, descriptor);
391
388
case 16 :
392
- return FormattedIntegerIO<CppTypeFor<TypeCategory::Integer, 16 >, DIR>(
393
- io, descriptor);
389
+ return FormattedIntegerIO<16 , DIR>(io, descriptor);
394
390
default :
395
391
handler.Crash (
396
392
" DescriptorIO: Unimplemented INTEGER kind (%d) in descriptor" ,
@@ -452,17 +448,13 @@ static bool DescriptorIO(IoStatementState &io, const Descriptor &descriptor) {
452
448
case TypeCategory::Logical:
453
449
switch (kind) {
454
450
case 1 :
455
- return FormattedLogicalIO<CppTypeFor<TypeCategory::Integer, 1 >, DIR>(
456
- io, descriptor);
451
+ return FormattedLogicalIO<1 , DIR>(io, descriptor);
457
452
case 2 :
458
- return FormattedLogicalIO<CppTypeFor<TypeCategory::Integer, 2 >, DIR>(
459
- io, descriptor);
453
+ return FormattedLogicalIO<2 , DIR>(io, descriptor);
460
454
case 4 :
461
- return FormattedLogicalIO<CppTypeFor<TypeCategory::Integer, 4 >, DIR>(
462
- io, descriptor);
455
+ return FormattedLogicalIO<4 , DIR>(io, descriptor);
463
456
case 8 :
464
- return FormattedLogicalIO<CppTypeFor<TypeCategory::Integer, 8 >, DIR>(
465
- io, descriptor);
457
+ return FormattedLogicalIO<8 , DIR>(io, descriptor);
466
458
default :
467
459
handler.Crash (
468
460
" DescriptorIO: Unimplemented LOGICAL kind (%d) in descriptor" ,
0 commit comments