Skip to content

Commit

Permalink
ROBUSTNESS: Prefix future expression code with base:: where needed
Browse files Browse the repository at this point in the history
  • Loading branch information
HenrikBengtsson committed Jan 30, 2024
1 parent 43ce12c commit b528e69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/expressions.R
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ makeExpression <- local({
...future.memory <- .(.memory)
} else {
...future.memory <- function(...) {
structure(c(rss = NA_real_, vms = NA_real_), class = "object_size")
base::structure(base::c(rss = NA_real_, vms = NA_real_), class = "object_size")
}
}
...future.startMemory <- ...future.memory(NA)
Expand Down

0 comments on commit b528e69

Please sign in to comment.