Skip to content

Commit 9d3eee1

Browse files
committed
fix comment
1 parent 80263a0 commit 9d3eee1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/subset.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ SEXP subsetDT(SEXP x, SEXP rows, SEXP cols) { // API change needs update NEWS.md
297297
}
298298

299299
int overAlloc = checkOverAlloc(GetOption1(install("datatable.alloccol")));
300-
SEXP ans = PROTECT(R_allocResizableVector(VECSXP, LENGTH(cols)+overAlloc)); nprotect++; // doing alloc.col directly here; eventually alloc.col can be deprecated.
300+
SEXP ans = PROTECT(R_allocResizableVector(VECSXP, LENGTH(cols)+overAlloc)); nprotect++; // doing alloc.col directly here
301301

302302
// user-defined and superclass attributes get copied as from v1.12.0
303303
copyMostAttrib(x, ans);

0 commit comments

Comments
 (0)