about summary refs log tree commit diff
path: root/compiler/rustc_const_eval/src/lib.rs
diff options
context:
space:
mode:
authorCastilloDel <delcastillodelarosadaniel@gmail.com>2022-10-04 21:18:15 +0200
committerCastilloDel <delcastillodelarosadaniel@gmail.com>2022-10-18 17:44:01 +0200
commitc3a1ca6be72dc676e585657983c48b8cd3048b0c (patch)
tree40d9509124e7cebb5dbb18546d8fd8f46300bec8 /compiler/rustc_const_eval/src/lib.rs
parent21b246587c2687935bd6004ffa5dcc4f4dd6600d (diff)
downloadrust-c3a1ca6be72dc676e585657983c48b8cd3048b0c.tar.gz
rust-c3a1ca6be72dc676e585657983c48b8cd3048b0c.zip
Remove allow(rustc::potential_query_instability) in rustc_const_eval
The use of FxHashMap has been replaced with FxIndexMap. For
more information see https://github.com/rust-lang/rust/issues/84447
Diffstat (limited to 'compiler/rustc_const_eval/src/lib.rs')
-rw-r--r--compiler/rustc_const_eval/src/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_const_eval/src/lib.rs b/compiler/rustc_const_eval/src/lib.rs
index 230f841cf4d..443c01fdb90 100644
--- a/compiler/rustc_const_eval/src/lib.rs
+++ b/compiler/rustc_const_eval/src/lib.rs
@@ -22,7 +22,6 @@ Rust MIR: a lowered representation of Rust.
 #![feature(yeet_expr)]
 #![feature(is_some_and)]
 #![recursion_limit = "256"]
-#![allow(rustc::potential_query_instability)]
 
 #[macro_use]
 extern crate tracing;