diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2015-04-15 17:33:26 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2015-04-15 17:33:26 +0200 |
commit | e14e5be9988214c9df9faffd15883d4a4dc30437 (patch) | |
tree | 332f9c2d14db95202589dfe890eab897706fb62a /lib/core/macros.nim | |
parent | 97cb0eb694f1176ac7af50a447a47c60989a81a4 (diff) | |
parent | 9700298d07ff710bb69075094c921011bc749388 (diff) | |
download | Nim-e14e5be9988214c9df9faffd15883d4a4dc30437.tar.gz |
Merge pull request #2549 from fowlmouth/patch-2
fixes for macros.getType()
Diffstat (limited to 'lib/core/macros.nim')
-rw-r--r-- | lib/core/macros.nim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/core/macros.nim b/lib/core/macros.nim index 5583748e0..786b84171 100644 --- a/lib/core/macros.nim +++ b/lib/core/macros.nim @@ -88,7 +88,9 @@ type ntyBigNum, ntyConst, ntyMutable, ntyVarargs, ntyIter, - ntyError + ntyError, + ntyBuiltinTypeClass, ntyConcept, ntyConceptInst, ntyComposite, + ntyAnd, ntyOr, ntyNot TNimTypeKinds* {.deprecated.} = set[NimTypeKind] NimSymKind* = enum |