This commit is contained in:
Araq
2014-07-08 08:48:48 +02:00
parent f16449ec22
commit 91ecae9c93

View File

@@ -46,6 +46,7 @@ const
on* = true ## alias for ``true``
off* = false ## alias for ``false``
{.push warning[GcMem]: off.}
{.push hints: off.}
type
@@ -2989,6 +2990,8 @@ 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``.
{.pop.} #{.push warning[GcMem]: off.}
when not defined(booting):
type
semistatic*[T] = static[T] | T