diff options
author | LemonBoy <LemonBoy@users.noreply.github.com> | 2018-09-07 01:58:49 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-09-07 01:58:49 +0200 |
commit | e81fe6d32f485f721fccd87e922addc5715a5fdd (patch) | |
tree | 4074d395a03dbbca765b7ebc8d563fc06ce08138 /compiler/pragmas.nim | |
parent | 84eab97fed35651234da14d188962bb8045b5b1e (diff) | |
download | Nim-e81fe6d32f485f721fccd87e922addc5715a5fdd.tar.gz |
Allow wCodegenDecl on lambdas (#8892)
Diffstat (limited to 'compiler/pragmas.nim')
-rw-r--r-- | compiler/pragmas.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/pragmas.nim b/compiler/pragmas.nim index 7aa674800..9a344c038 100644 --- a/compiler/pragmas.nim +++ b/compiler/pragmas.nim @@ -53,7 +53,7 @@ const lambdaPragmas* = {FirstCallConv..LastCallConv, wImportc, wExportc, wNodecl, wNosideeffect, wSideeffect, wNoreturn, wDynlib, wHeader, wDeprecated, wExtern, wThread, wImportCpp, wImportObjC, wAsmNoStackFrame, - wRaises, wLocks, wTags, wGcSafe} + wRaises, wLocks, wTags, wGcSafe, wCodegenDecl} typePragmas* = {wImportc, wExportc, wDeprecated, wMagic, wAcyclic, wNodecl, wPure, wHeader, wCompilerProc, wCore, wFinal, wSize, wExtern, wShallow, wImportCpp, wImportObjC, wError, wIncompleteStruct, wByCopy, wByRef, |