summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2017-09-16 10:29:29 +0200
committerAndreas Rumpf <rumpf_a@web.de>2017-09-16 10:29:29 +0200
commit2b592a64259e4f66b0ad5dd7264f7b524c309fee (patch)
tree1dbf87794d6405efd4083fa820b55dac78d1a2d5 /lib
parent28bdf0ac80ad4f44515874e03720c70156903f6b (diff)
downloadNim-2b592a64259e4f66b0ad5dd7264f7b524c309fee.tar.gz
in prepration for the upcoming different integer inference rules
Diffstat (limited to 'lib')
-rw-r--r--lib/core/macros.nim2
-rw-r--r--lib/pure/strutils.nim2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/core/macros.nim b/lib/core/macros.nim
index 3cfefb5c1..e88002c7b 100644
--- a/lib/core/macros.nim
+++ b/lib/core/macros.nim
@@ -669,7 +669,7 @@ proc astGenRepr*(n: NimNode): string {.compileTime, benign.} =
         t = x
       result = newString(len)
       for j in countdown(len-1, 0):
-        result[j] = HexChars[t and 0xF]
+        result[j] = HexChars[int(t and 0xF)]
         t = t shr 4
         # handle negative overflow
         if t == 0 and x < 0: t = -1
diff --git a/lib/pure/strutils.nim b/lib/pure/strutils.nim
index 2a64e70d9..8b4e6bd05 100644
--- a/lib/pure/strutils.nim
+++ b/lib/pure/strutils.nim
@@ -888,7 +888,7 @@ proc toHex*(x: BiggestInt, len: Positive): string {.noSideEffect,
     n = x
   result = newString(len)
   for j in countdown(len-1, 0):
-    result[j] = HexChars[n and 0xF]
+    result[j] = HexChars[int(n and 0xF)]
     n = n shr 4
     # handle negative overflow
     if n == 0 and x < 0: n = -1