Skip to content

Commit 4751e2f

Browse files
committed
Format with air
1 parent d4bd611 commit 4751e2f

1 file changed

Lines changed: 16 additions & 2 deletions

File tree

R/r2f-constructors.R

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,15 +186,29 @@ fill_constructor_value <- function(literal, mode, args, scope, ..., hoist) {
186186
register_r2f_handler(
187187
"logical",
188188
function(args, scope, ..., hoist = NULL) {
189-
fill_constructor_value(".false.", "logical", args, scope, ..., hoist = hoist)
189+
fill_constructor_value(
190+
".false.",
191+
"logical",
192+
args,
193+
scope,
194+
...,
195+
hoist = hoist
196+
)
190197
},
191198
match_fun = FALSE
192199
)
193200

194201
register_r2f_handler(
195202
"integer",
196203
function(args, scope, ..., hoist = NULL) {
197-
fill_constructor_value("0_c_int", "integer", args, scope, ..., hoist = hoist)
204+
fill_constructor_value(
205+
"0_c_int",
206+
"integer",
207+
args,
208+
scope,
209+
...,
210+
hoist = hoist
211+
)
198212
},
199213
match_fun = FALSE
200214
)

0 commit comments

Comments
 (0)