From c16dbca55c8b687924e16c08555b29cf6733c74b Mon Sep 17 00:00:00 2001 From: John Date: Sat, 22 Jun 2024 01:59:01 -0500 Subject: [PATCH] cl-structures: Remove #[feature(inline_const)], stabilized in Rust 1.79 --- compiler/cl-structures/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/cl-structures/src/lib.rs b/compiler/cl-structures/src/lib.rs index 0e8443e..8b7e0ee 100644 --- a/compiler/cl-structures/src/lib.rs +++ b/compiler/cl-structures/src/lib.rs @@ -10,7 +10,7 @@ //! [im]: index_map::IndexMap //! [mi]: index_map::MapIndex #![warn(clippy::all)] -#![feature(inline_const, dropck_eyepatch, decl_macro, get_many_mut)] +#![feature(dropck_eyepatch, decl_macro, get_many_mut)] #![deny(unsafe_op_in_unsafe_fn)] pub mod intern;