diff options
author | hlaaftana <10591326+hlaaftana@users.noreply.github.com> | 2020-02-22 01:14:55 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-21 23:14:55 +0100 |
commit | 1276e386fe68ab2ac359657297a1a2c570d7aefb (patch) | |
tree | 6d7906e5ed4d73f3b1c4ec6c54c2c98f6b33942d /changelog.md | |
parent | 0d219d2c67cdf123fbc38aade3974edef5ee9f8b (diff) | |
download | Nim-1276e386fe68ab2ac359657297a1a2c570d7aefb.tar.gz |
Consider proc as a pointer type in options (#13460)
* Consider proc as a pointer type in options * Add version annotation for SomePointer having proc in options * Log procs as pointers for options in changelog
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index ce47249a8..0e0b6ce3d 100644 --- a/changelog.md +++ b/changelog.md @@ -25,6 +25,8 @@ It didn't work well together with the existing inplace version of the same proc (`tables.merge(var CountTable, CountTable)`). It was an oversight to be included in v1.0. +- `options` now treats `proc` like other pointer types, meaning `nil` proc variables + are converted to `None`. ### Breaking changes in the compiler |