diff options
author | Zahary Karadjov <zahary@gmail.com> | 2017-04-28 18:38:08 +0300 |
---|---|---|
committer | Zahary Karadjov <zahary@gmail.com> | 2017-04-28 18:38:08 +0300 |
commit | fa52cff82666cc404e71acdc967444a8d9fab31c (patch) | |
tree | b237809611215fb725705335205872db7cc96fe4 | |
parent | 5c678e284862e6b52b0dd4118ef857d7b6b17ef9 (diff) | |
download | Nim-fa52cff82666cc404e71acdc967444a8d9fab31c.tar.gz |
hold back the new | operator for types as it creates mysterious problems fro tests/trmacros/tor
-rw-r--r-- | lib/system.nim | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/system.nim b/lib/system.nim index f9ae5b552..4dcb39c2a 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -59,9 +59,6 @@ const {.push warning[GcMem]: off, warning[Uninit]: off.} {.push hints: off.} -proc `|` *(a, b: typedesc): typedesc {.magic: "TypeTrait", noSideEffect.} - ## Constructs an `or` meta class - proc `or` *(a, b: typedesc): typedesc {.magic: "TypeTrait", noSideEffect.} ## Constructs an `or` meta class |