diff options
author | Oscar NihlgÄrd <oscarnihlgard@gmail.com> | 2019-08-31 19:34:08 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-08-31 19:34:08 +0200 |
commit | 35268c500f2143e757a71846b246a1ecb31c72f8 (patch) | |
tree | b843a8b5c75dc0b5530a1361f1456dcdc05c83de /changelog.md | |
parent | 6e01be34efd60869c7905b1effcc47880cedfb6d (diff) | |
download | Nim-35268c500f2143e757a71846b246a1ecb31c72f8.tar.gz |
Fix int literals and range interaction (#11197)
* Fix int literals and range interaction * Fix test * remove float range fix; update 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 38bb412d0..35395afd3 100644 --- a/changelog.md +++ b/changelog.md @@ -34,6 +34,8 @@ type ### Breaking changes in the compiler +- A bug allowing `int` to be implicitly converted to range types of smaller size (e.g `range[0'i8..10'i8]`) has been fixed. + ## Library additions |