blob: a9f4b6e531a6c12ebd293b0da9625a18a2b3cb64 [file] [log] [blame]
public struct GrowsToInt64 {
#if SMALL
var value: Int32
#elseif BIG
var value: Int64
#else
#error("Must define SMALL or BIG")
#endif
public init() { self.value = 0 }
}