Skip to content

Commit 26cdf8f

Browse files
committed
fix inherits
1 parent 074b805 commit 26cdf8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/data.table.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2756,7 +2756,7 @@ set = function(x, i = NULL, j, value) {
27562756
x = .Call(Cassign, x, i, j, NULL, value)
27572757
if (old_add != address(x)) {
27582758
# assign is needed to replace x on address change due to possible new allocation
2759-
assign(name, x, envir = parent.frame(), inherits = TRUE)
2759+
assign(name, x, envir=parent.frame())
27602760
}
27612761
invisible(x)
27622762
}

0 commit comments

Comments
 (0)