summary refs log tree commit diff stats
path: root/changelog.md
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2018-01-03 13:24:44 +0100
committerAraq <rumpf_a@web.de>2018-01-03 13:24:44 +0100
commit9abbd6c880a2326bf152641bf28515aebbc2da1a (patch)
tree973d71a7235057ccfcef61fac918e41c0cf9cb82 /changelog.md
parente593fef3206c359344c93bf7a3716da644f1906f (diff)
parentbbfe6e81ad9a09fc57710809d5325e13a8c95cbe (diff)
downloadNim-9abbd6c880a2326bf152641bf28515aebbc2da1a.tar.gz
Merge branch 'devel' of github.com:nim-lang/Nim into devel
Diffstat (limited to 'changelog.md')
-rw-r--r--changelog.md3
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.