Merge pull request #1282 from flaviut/devel

Fix bootstrapping
This commit is contained in:
Andreas Rumpf
2014-06-16 23:29:00 +02:00

View File

@@ -2985,7 +2985,7 @@ proc locals*(): TObject {.magic: "Locals", noSideEffect.} =
## # -> B is 1
discard
proc deepCopy*[T](x: T): T {.magic: "DeepCopy", noSideEffect.}
proc deepCopy*[T](x: T): T {.magic: "DeepCopy", noSideEffect.} = discard
## performs a deep copy of `x`. This is also used by the code generator
## for the implementation of ``spawn``.