Merge pull request #4739 from coffeepots/patch-2

Allow compilation of sharedtables.nim
This commit is contained in:
Andreas Rumpf
2016-09-09 21:09:31 +02:00
committed by GitHub

View File

@@ -15,6 +15,8 @@
import
hashes, math, locks
include "system/inclrtl"
type
KeyValuePair[A, B] = tuple[hcode: Hash, key: A, val: B]
KeyValuePairSeq[A, B] = ptr array[10_000_000, KeyValuePair[A, B]]