diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2008-08-23 11:16:44 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2008-08-23 11:16:44 +0200 |
commit | 07d5a8085bbcc21a1d9d06a2976ecc00e9c8d55b (patch) | |
tree | b07a53afeb56f4bba917c1a3a843f48dd25b62be /lib/int64s.nim | |
parent | 916c25f9a70b68eb7a5e2c45d7cc2e10c6e3a525 (diff) | |
download | Nim-07d5a8085bbcc21a1d9d06a2976ecc00e9c8d55b.tar.gz |
too many changes to list
Diffstat (limited to 'lib/int64s.nim')
-rw-r--r-- | lib/int64s.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/int64s.nim b/lib/int64s.nim index bac6b9ccd..430514ce3 100644 --- a/lib/int64s.nim +++ b/lib/int64s.nim @@ -10,8 +10,7 @@ # 64 bit integers for platforms that don't have those type - IInt64 = record # "internal" int64 - lo, hi: int32 + IInt64 = tuple[lo, hi: int32] proc cmpI64(x, y: IInt64): int32 {.compilerproc.} = result = x.hi -% y.hi |