diff options
author | Araq <rumpf_a@web.de> | 2013-05-19 03:32:37 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-05-19 03:32:37 +0200 |
commit | f16ded879b61428043cc4f78ae117de591c9339b (patch) | |
tree | a297dbf1b141d924e77146c2e2b93c3df288580e /compiler | |
parent | 38ed2373aba94832db01e387c592915c8eec4e60 (diff) | |
download | Nim-f16ded879b61428043cc4f78ae117de591c9339b.tar.gz |
updated docs
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/semexprs.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/semexprs.nim b/compiler/semexprs.nim index 2b419e84a..ed8ebfbb9 100644 --- a/compiler/semexprs.nim +++ b/compiler/semexprs.nim @@ -1284,7 +1284,7 @@ proc getMagicSym(magic: TMagic): PSym = proc newAnonSym(kind: TSymKind, info: TLineInfo, owner = getCurrOwner()): PSym = result = newSym(kind, idAnon, owner, info) - result.flags = { sfGenSym } + result.flags = {sfGenSym} proc semExpandToAst(c: PContext, n: PNode): PNode = var macroCall = n[1] |