summary refs log tree commit diff stats
path: root/lib/int64s.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2008-08-23 11:16:44 +0200
committerAndreas Rumpf <rumpf_a@web.de>2008-08-23 11:16:44 +0200
commit07d5a8085bbcc21a1d9d06a2976ecc00e9c8d55b (patch)
treeb07a53afeb56f4bba917c1a3a843f48dd25b62be /lib/int64s.nim
parent916c25f9a70b68eb7a5e2c45d7cc2e10c6e3a525 (diff)
downloadNim-07d5a8085bbcc21a1d9d06a2976ecc00e9c8d55b.tar.gz
too many changes to list
Diffstat (limited to 'lib/int64s.nim')
-rw-r--r--lib/int64s.nim3
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