diff options
author | Araq <rumpf_a@web.de> | 2020-03-10 10:39:43 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2020-03-11 09:26:57 +0100 |
commit | 861a5340fec22cbca014bffc84f61536a5aa3e37 (patch) | |
tree | b471190854a38e215cdb8e76ff7856e2ced56a63 /changelog.md | |
parent | b0684ec425dca5e76eb6b27eb09a84fb523af49c (diff) | |
download | Nim-861a5340fec22cbca014bffc84f61536a5aa3e37.tar.gz |
fixes #13519
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 44c654fd3..b76946464 100644 --- a/changelog.md +++ b/changelog.md @@ -40,6 +40,10 @@ - The `{.dynlib.}` pragma is now required for exporting symbols when making shared objects on POSIX and macOS, which make it consistent with the behavior on Windows. +- The compiler is now more strict about type conversions concerning proc + types: Type conversions cannot be used to hide `.raise` effects or side + effects, instead a `cast` must be used. With the flag `--useVersion:1.0` the + old behaviour is emulated. ## Library additions |