Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
fix shared library finalize issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rainers authored and Orvid committed Dec 12, 2014
1 parent 6d0fbb9 commit 0b87997
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gc/gc.d
Original file line number Diff line number Diff line change
Expand Up @@ -2954,10 +2954,10 @@ struct Gcx
pool.structFinals.alloc(pool.mark.nbits);
pool.structFinals.data[dataIndex] |= orWith;
}
mask &= ~BlkAttr.FINALIZE; // prevent from setting normal finalize attribute.
if (!mask)
return;
}
mask &= ~BlkAttr.FINALIZE; // prevent from setting normal finalize attribute.
if (!mask)
return;
}

if (mask & BlkAttr.FINALIZE)
Expand Down

0 comments on commit 0b87997

Please sign in to comment.