diff options
author | Miran <narimiran@disroot.org> | 2020-09-08 14:25:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-08 14:25:25 +0200 |
commit | c49b88163c12d18506ef43e4d26abd5d76f68359 (patch) | |
tree | 522590ff24ad68767fb00f69f51a7a062d4cb973 /changelog.md | |
parent | a81610230ddacf33f11e8cc57a379f12a985f8b6 (diff) | |
download | Nim-c49b88163c12d18506ef43e4d26abd5d76f68359.tar.gz |
"for-loop macros" are no longer an experimental feature (#15288)
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 3865f1efb..58efc42e6 100644 --- a/changelog.md +++ b/changelog.md @@ -250,6 +250,10 @@ proc mydiv(a, b): int {.raises: [].} = `.noSideEffect` stricter. [See](manual_experimental.html#stricts-funcs) for more information. +- "for-loop macros" (see [the manual](manual.html#macros-for-loop-macros)) are no longer + an experimental feature. In other words, you don't have to write pragma + `{.experimental: "forLoopMacros".}` if you want to use them. + ## Compiler changes |