From f6c456b7921e10ce2bcd6ad3da185e48afef3e5a Mon Sep 17 00:00:00 2001 From: cheatfate Date: Sun, 6 Mar 2016 00:55:29 +0200 Subject: [PATCH] Fix for #3939 issue --- lib/system/repr.nim | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/system/repr.nim b/lib/system/repr.nim index 7f18ed31c9..831515eb17 100644 --- a/lib/system/repr.nim +++ b/lib/system/repr.nim @@ -260,6 +260,7 @@ when not defined(useNimRtl): of tyInt16: add result, $int(cast[ptr int16](p)[]) of tyInt32: add result, $int(cast[ptr int32](p)[]) of tyInt64: add result, $(cast[ptr int64](p)[]) + of tyUInt: add result, $(cast[ptr uint](p)[]) of tyUInt8: add result, $(cast[ptr uint8](p)[]) of tyUInt16: add result, $(cast[ptr uint16](p)[]) of tyUInt32: add result, $(cast[ptr uint32](p)[])