diff options
author | Clyybber <darkmine956@gmail.com> | 2020-07-29 16:17:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-29 16:17:20 +0200 |
commit | 2629d619a114f9c27b753a32da717a25906c99e6 (patch) | |
tree | 4a0e716d76da6c18877806dca852740081cb6158 /changelog.md | |
parent | 196e747df150ace81e7f4c01253128d4a89f03c7 (diff) | |
download | Nim-2629d619a114f9c27b753a32da717a25906c99e6.tar.gz |
Fix forward declaration issues in template/macro context (#15091)
* Fix forward declaration issues in template/macro context * Correct forward declaration resolving for overloads * Remove old dead code * WIP consistent gensym ids * Minimize diff * Remove obsoleted hack * Add templInstCounter to give unique IDs to template instantiations * Remove obsoleted code * Eh, init in myOpen, not myProcess... * Remove optNimV019 * Add testcase for #13484
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index d9eaa5823..517919de9 100644 --- a/changelog.md +++ b/changelog.md @@ -264,6 +264,7 @@ proc mydiv(a, b): int {.raises: [].} = - Removed the `--oldNewlines` switch. - Removed the `--laxStrings` switch for mutating the internal zero terminator on strings. - Removed the `--oldast` switch. +- Removed the `--oldgensym` switch - `$getType(untyped)` is now "untyped" instead of "expr", `$getType(typed)` is now "typed" instead of "stmt". - Sink inference is now disabled per default and has to enabled explicitly via |