diff options
Diffstat (limited to 'lib/system/repr.nim')
-rwxr-xr-x | lib/system/repr.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system/repr.nim b/lib/system/repr.nim index 6b940ccb4..82bc8aace 100755 --- a/lib/system/repr.nim +++ b/lib/system/repr.nim @@ -201,7 +201,7 @@ when not defined(useNimRtl): case typ.kind of tySet: reprSetAux(result, p, typ) of tyArray: reprArray(result, p, typ, cl) - of tyTuple, tyPureObject: reprRecord(result, p, typ, cl) + of tyTuple: reprRecord(result, p, typ, cl) of tyObject: var t = cast[ptr PNimType](p)[] reprRecord(result, p, t, cl) @@ -251,7 +251,7 @@ when not defined(useNimRtl): cl: TReprClosure initReprClosure(cl) result = "" - if typ.kind in {tyObject, tyPureObject, tyTuple, tyArray, tySet}: + if typ.kind in {tyObject, tyTuple, tyArray, tySet}: reprAux(result, p, typ, cl) else: var p = p |