diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2023-11-30 21:05:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-30 14:05:45 +0100 |
commit | b5f5b74fc8308593f04e3bc11f7c5ead24b73eb5 (patch) | |
tree | e373a39deab03649a8fbc4bed9a9c0582f48ba64 /changelog.md | |
parent | 9140f8e2212c91347704cec0f98c0345ddf0ea1e (diff) | |
download | Nim-b5f5b74fc8308593f04e3bc11f7c5ead24b73eb5.tar.gz |
enable vtable implementation for C++ and make it an experimental feature (#23004)
follow up https://github.com/nim-lang/Nim/pull/22991 - [x] turning it into an experimental feature --------- Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/changelog.md b/changelog.md index fb70a9a6b..f21ab39da 100644 --- a/changelog.md +++ b/changelog.md @@ -5,7 +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. -- Methods now support implementations based on vtable by using `-d:nimPreviewVtables`. methods are confined in the same module where the type has been defined. +- Methods now support implementations based on a VTable by using `--experimental:vtables`. Methods are then confined to be in the same module where their type has been defined. - With `-d:nimPreviewNonVarDestructor`, non-var destructors become the default. ## Standard library additions and changes |