Fix bootstrapping

This commit is contained in:
flaviut
2014-06-16 17:25:34 -04:00
parent 2ec1501c7a
commit 2456c8dfe3

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``.