@@ -121,7 +121,7 @@ inline RT_API_ATTRS bool SetInteger(INT &x, int kind, std::int64_t value) {
121
121
template <template <TypeCategory, int > class FUNC , typename RESULT,
122
122
typename ... A>
123
123
inline RT_API_ATTRS RESULT ApplyType (
124
- TypeCategory cat, int kind, Terminator &terminator, A &&... x) {
124
+ TypeCategory cat, int kind, Terminator &terminator, A &&...x) {
125
125
switch (cat) {
126
126
case TypeCategory::Integer:
127
127
switch (kind) {
@@ -222,7 +222,7 @@ inline RT_API_ATTRS RESULT ApplyType(
222
222
// a function object template and calls it with the supplied arguments.
223
223
template <template <int KIND> class FUNC , typename RESULT, typename ... A>
224
224
inline RT_API_ATTRS RESULT ApplyIntegerKind (
225
- int kind, Terminator &terminator, A &&... x) {
225
+ int kind, Terminator &terminator, A &&...x) {
226
226
switch (kind) {
227
227
case 1 :
228
228
return FUNC<1 >{}(std::forward<A>(x)...);
@@ -243,7 +243,7 @@ inline RT_API_ATTRS RESULT ApplyIntegerKind(
243
243
244
244
template <template <int KIND> class FUNC , typename RESULT, typename ... A>
245
245
inline RT_API_ATTRS RESULT ApplyFloatingPointKind (
246
- int kind, Terminator &terminator, A &&... x) {
246
+ int kind, Terminator &terminator, A &&...x) {
247
247
switch (kind) {
248
248
#if 0 // TODO: REAL/COMPLEX (2 & 3)
249
249
case 2:
@@ -271,7 +271,7 @@ inline RT_API_ATTRS RESULT ApplyFloatingPointKind(
271
271
272
272
template <template <int KIND> class FUNC , typename RESULT, typename ... A>
273
273
inline RT_API_ATTRS RESULT ApplyCharacterKind (
274
- int kind, Terminator &terminator, A &&... x) {
274
+ int kind, Terminator &terminator, A &&...x) {
275
275
switch (kind) {
276
276
case 1 :
277
277
return FUNC<1 >{}(std::forward<A>(x)...);
@@ -286,7 +286,7 @@ inline RT_API_ATTRS RESULT ApplyCharacterKind(
286
286
287
287
template <template <int KIND> class FUNC , typename RESULT, typename ... A>
288
288
inline RT_API_ATTRS RESULT ApplyLogicalKind (
289
- int kind, Terminator &terminator, A &&... x) {
289
+ int kind, Terminator &terminator, A &&...x) {
290
290
switch (kind) {
291
291
case 1 :
292
292
return FUNC<1 >{}(std::forward<A>(x)...);
0 commit comments