Skip to content

Commit b0ef41e

Browse files
authored
removed extra parentheses (#6960)
1 parent b7c4e96 commit b0ef41e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reorder.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ SEXP reorder(SEXP x, SEXP order)
102102
}
103103
}
104104
// Unique and somber line. Not done lightly. Please read all comments in this file.
105-
memcpy(((char *)DATAPTR_RO(v)) + size*start, TMP, size*nmid);
105+
memcpy((char *)DATAPTR_RO(v) + size*start, TMP, size*nmid);
106106
// The one and only place in data.table where we write behind the write-barrier. Fundamental to setkey and data.table.
107107
// This file is unique and special w.r.t. the write-barrier: an utterly strict in-place shuffle.
108108
// This shuffle operation does not inc or dec named/refcnt, or anything similar in R: past, present or future.

0 commit comments

Comments
 (0)