summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--compiler/jstypes.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/jstypes.nim b/compiler/jstypes.nim
index 8b032c3ce..1288c854d 100644
--- a/compiler/jstypes.nim
+++ b/compiler/jstypes.nim
@@ -123,7 +123,7 @@ proc genTypeInfo(p: PProc, typ: PType): PRope =
   case t.kind
   of tyDistinct: 
     result = genTypeInfo(p, typ.sons[0])
-  of tyPointer, tyProc, tyBool, tyChar, tyCString, tyString, tyInt..tyFloat128: 
+  of tyPointer, tyProc, tyBool, tyChar, tyCString, tyString, tyInt..tyUInt64:
     var s = ropef(
       "var $1 = {size: 0,kind: $2,base: null,node: null,finalizer: null};$n", 
               [result, toRope(ord(t.kind))])