Skip to content

Commit db6b6b9

Browse files
committed
remove change
1 parent c2c3bfd commit db6b6b9

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/utils.c

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,10 +272,7 @@ void copySharedColumns(SEXP x) {
272272
int nShared=0;
273273
for (int i=0; i<ncol; ++i) {
274274
SEXP thiscol = xp[i];
275-
if (
276-
hash_lookup(marks, thiscol, 0)<0
277-
|| ALTREP(thiscol)
278-
) {
275+
if (ALTREP(thiscol) || hash_lookup(marks, thiscol, 0)<0) {
279276
shared[i] = true; // we mark ALTREP as 'shared' too, whereas 'tocopy' would be better word to use for ALTREP
280277
nShared++;
281278
} else {

0 commit comments

Comments
 (0)