about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2017-11-21 12:43:24 +0100
committerGitHub <noreply@github.com>2017-11-21 12:43:24 +0100
commit13c1cbe749a5d6f737152454ea4041b5d53d9acb (patch)
treec320b0b3bfde2743791e3bc49b172a76df8e983c
parentb9a7601913ddcd261c0c3a5713d8024780f6ca2b (diff)
downloadrust-13c1cbe749a5d6f737152454ea4041b5d53d9acb.tar.gz
rust-13c1cbe749a5d6f737152454ea4041b5d53d9acb.zip
Remove 1.23.0 release notes entry on const_fn
It doesn’t change anything for stable users in practice. See discussion in https://github.com/rust-lang/rust/pull/46148
-rw-r--r--RELEASES.md4
1 files changed, 0 insertions, 4 deletions
diff --git a/RELEASES.md b/RELEASES.md
index d46208831ef..fff5feb2aef 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -5,10 +5,6 @@ Language
 --------
 - [`non_snake_case` lint now allows extern no-mangle functions][44966]
 - [Now accepts underscores in unicode escapes][43716]
-- [`#![feature(const_fn)]` is now no longer required for
-  calling const functions.][43017] It's still required for creating
-  constant functions, and const functions in the standard libraries
-  now have individual feature gates.
 - [`T op= &T` now works for numeric types.][44287] eg. `let mut x = 2; x += &8;`
 - [types that impl `Drop` are now allowed in `const` and `static` types][44456]