diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2021-05-12 22:00:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-12 22:00:37 +0200 |
commit | 3bc625aff1664eb4206ae90d0a132c8f717e651d (patch) | |
tree | 5ffd5edee1fd4dbc1cc76f00f1dd3131dd332076 /lib/std/packedsets.nim | |
parent | 60b4fa71a8ce1abc43b6f6bba3c3aa1f69b15092 (diff) | |
download | Nim-3bc625aff1664eb4206ae90d0a132c8f717e651d.tar.gz |
ORC: progress (#18000)
* ORC: progress * ORC: bugfix; don't follow acyclic data even if only at runtime the subtype is marked as acyclic * progress * minor style changes
Diffstat (limited to 'lib/std/packedsets.nim')
-rw-r--r-- | lib/std/packedsets.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/packedsets.nim b/lib/std/packedsets.nim index 2b5896be0..e209d2aae 100644 --- a/lib/std/packedsets.nim +++ b/lib/std/packedsets.nim @@ -38,7 +38,7 @@ const IntMask = 1 shl IntShift - 1 type - Trunk = ref object + Trunk {.acyclic.} = ref object next: Trunk # all nodes are connected with this pointer key: int # start address at bit 0 bits: array[0..IntsPerTrunk - 1, BitScalar] # a bit vector |