Use 'typedesc' instead of 'untyped'

This commit is contained in:
Andreas Rumpf
2017-11-16 03:05:02 +01:00
parent b02ecda5a0
commit 6976bf20f5

View File

@@ -706,7 +706,7 @@ template newSeqWith*(len: int, init: untyped): untyped =
result[i] = init
result
macro asArray*(targetType: untyped, values: typed): untyped =
macro asArray*(targetType: typedesc, values: typed): untyped =
## applies a type conversion to each of the elements in the specified
## array literal. Each element is converted to the ``targetType`` type..
##