replaces few consts with statics to reduce readonly section

This commit is contained in:
klensy
2025-01-28 17:38:22 +03:00
parent 633a3fe36d
commit dc62b8fd11
7 changed files with 15 additions and 15 deletions

View File

@@ -104,7 +104,7 @@ macro_rules! declare_features {
)+) => {
/// Unstable language features that are being implemented or being
/// considered for acceptance (stabilization) or removal.
pub const UNSTABLE_LANG_FEATURES: &[Feature] = &[
pub static UNSTABLE_LANG_FEATURES: &[Feature] = &[
$(Feature {
name: sym::$feature,
since: $ver,