diff options
author | Dmitry Atamanov <data-man@users.noreply.github.com> | 2018-01-03 14:42:09 +0300 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-01-03 12:42:09 +0100 |
commit | ce983383fc1c22e4ade4cbfb591f86723ada51fc (patch) | |
tree | aeec7ed60236c52afc8b8c3cde79630d5ca98894 /changelog.md | |
parent | 8941f5bd9c3f90f4879647fe86d875e46598ecbd (diff) | |
download | Nim-ce983383fc1c22e4ade4cbfb591f86723ada51fc.tar.gz |
Add a notes about integer casting to the changelog (#6996)
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 1c5848ce8..21ab2b87a 100644 --- a/changelog.md +++ b/changelog.md @@ -187,3 +187,6 @@ let mySeq = @[1, 2, 1, 3, 1, 4] myCounter = mySeq.toCountTable() ``` + +- Added support for casting between integers of same bitsize in VM (compile time and nimscript). + This allow to among other things to reinterpret signed integers as unsigned. |