summary refs log tree commit diff stats
path: root/lib/int64s.nim
diff options
context:
space:
mode:
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