Skip to content

Commit 9cc1a48

Browse files
authored
Update src/rbindlist.c
1 parent 24f279b commit 9cc1a48

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/rbindlist.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ SEXP rbindlist(SEXP l, SEXP usenamesArg, SEXP fillArg, SEXP idcolArg, SEXP ignor
132132
int *colMapRaw = malloc(sizeof(*colMapRaw) * LENGTH(l)*ncol); // the result of this scope used later
133133
int *uniqMap = malloc(sizeof(*uniqMap) * ncol); // maps the ith unique string to the first time it occurs in the final result
134134
int *dupLink = malloc(sizeof(*dupLink) * ncol); // if a colname has occurred before (a dup) links from the 1st to the 2nd time in the final result, 2nd to 3rd, etc
135-
``` typo
136135
if (!colMapRaw || !uniqMap || !dupLink) {
137136
// # nocov start
138137
for (int i=0; i<nuniq; ++i) SET_TRUELENGTH(uniq[i], 0);

0 commit comments

Comments
 (0)