diff options
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/system.nim | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim index e348bafea..1c8bf3ae9 100755 --- a/lib/system.nim +++ b/lib/system.nim @@ -1889,4 +1889,8 @@ proc `[]=`*[T](s: var seq[T], x: TSlice[int], b: openArray[T]) = else: raise newException(EOutOfRange, "differing lengths for slice assignment") -proc getTypeInfo*[T](x: T): pointer {.magic: "ToAny".} +proc getTypeInfo*[T](x: T): pointer {.magic: "GetTypeInfo".} + ## get type information for `x`. Ordinary code should not use this, but + ## the `typeinfo` module instead. + + |