a bit better message (#17606)

This commit is contained in:
flywind
2021-04-01 14:49:10 +08:00
committed by GitHub
parent a31e601550
commit f3c504e49a

View File

@@ -194,8 +194,8 @@ proc mapType(conf: ConfigRef; typ: PType; kind: TSymKind): TCTypeKind =
result = TCTypeKind(ord(typ.kind) - ord(tyInt) + ord(ctInt))
of tyStatic:
if typ.n != nil: result = mapType(conf, lastSon typ, kind)
else: doAssert(false, "mapType")
else: doAssert(false, "mapType")
else: doAssert(false, "mapType: " & $typ.kind)
else: doAssert(false, "mapType: " & $typ.kind)
proc mapReturnType(conf: ConfigRef; typ: PType): TCTypeKind =
#if skipTypes(typ, typedescInst).kind == tyArray: result = ctPtr