Skip to content

Commit

Permalink
Fix regex
Browse files Browse the repository at this point in the history
  • Loading branch information
richfitz committed Nov 21, 2024
1 parent de4496b commit cd96866
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/compile.R
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ dust_template_data <- function(name,
has_adjoint = deparse1(has_adjoint),
parameters = deparse_df(parameters, 4),
default_dt = deparse1(default_dt),
package = paste0(gsub("[^A-Za-z1-9]", ".", name), mangle %||% ""),
package = paste0(gsub("[^A-Za-z0-9]", ".", name), mangle %||% ""),
linking_to = linking_to,
cpp_std = cpp_std,
compiler_options = compiler_options)
Expand Down

0 comments on commit cd96866

Please sign in to comment.