diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2023-11-26 01:27:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-25 18:27:27 +0100 |
commit | 379299a5ac06f67863525fe253f3de4a4e01ff01 (patch) | |
tree | 11f165e478cfd206a0dabf568a9ccbe866e42a1b /changelog.md | |
parent | 502a4486aeb8d0a5dcdf86540522d3dc16960536 (diff) | |
download | Nim-379299a5ac06f67863525fe253f3de4a4e01ff01.tar.gz |
fixes #22286; enforce Non-var T destructors by `nimPreviewNonVarDestructor` (#22975)
fixes #22286 ref https://forum.nim-lang.org/t/10642 For backwards compatibilities, we might need to keep the changes under a preview compiler flag. Let's see how many packags it break. **TODO** in the following PRs - [ ] Turn the `var T` destructors warning into an error with `nimPreviewNonVarDestructor` --------- Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
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 3351a6f7a..ab121f5a1 100644 --- a/changelog.md +++ b/changelog.md @@ -5,6 +5,7 @@ - `-d:nimStrictDelete` becomes the default. An index error is produced when the index passed to `system.delete` was out of bounds. Use `-d:nimAuditDelete` to mimic the old behavior for backwards compatibility. - The default user-agent in `std/httpclient` has been changed to `Nim-httpclient/<version>` instead of `Nim httpclient/<version>` which was incorrect according to the HTTP spec. +- With `-d:nimPreviewNonVarDestructor`, non-var destructors become the default. ## Standard library additions and changes |