diff options
| author | Oliver Schneider <github35764891676564198441@oli-obk.de> | 2018-10-05 10:17:16 +0200 |
|---|---|---|
| committer | Oliver Schneider <github35764891676564198441@oli-obk.de> | 2018-10-05 10:36:14 +0200 |
| commit | ec74d3533a9b88505d56d0ae00a78acf2e702c92 (patch) | |
| tree | 90aea3515066a7dcb1069739a194d9153e03073b /src/libsyntax/attr | |
| parent | b8bea5a0a6aef3966008787a25949344f8cf6942 (diff) | |
| download | rust-ec74d3533a9b88505d56d0ae00a78acf2e702c92.tar.gz rust-ec74d3533a9b88505d56d0ae00a78acf2e702c92.zip | |
Stabilize `min_const_fn`
Diffstat (limited to 'src/libsyntax/attr')
| -rw-r--r-- | src/libsyntax/attr/builtin.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libsyntax/attr/builtin.rs b/src/libsyntax/attr/builtin.rs index f1cec422420..1cc2e62a9c6 100644 --- a/src/libsyntax/attr/builtin.rs +++ b/src/libsyntax/attr/builtin.rs @@ -107,8 +107,7 @@ pub struct Stability { pub level: StabilityLevel, pub feature: Symbol, pub rustc_depr: Option<RustcDeprecation>, - /// `None` means the function is stable but needs to be allowed by the - /// `min_const_fn` feature + /// `None` means the function is stable but needs to be a stable const fn, too /// `Some` contains the feature gate required to be able to use the function /// as const fn pub const_stability: Option<Symbol>, |
