about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src
diff options
context:
space:
mode:
authorMara Bos <m-ou.se@m-ou.se>2021-02-04 21:10:42 +0100
committerGitHub <noreply@github.com>2021-02-04 21:10:42 +0100
commit113e27fcfcf20d3c241ca40c0f8c214aa578014d (patch)
tree2d4d33d5cf9013bc0cc195781839d983b2af742e /compiler/rustc_data_structures/src
parent83e0fe3dbbeb675599ddc5ffef4e3c41f816726b (diff)
parent89882388d931d2e4d0d30c73fc1aa9c56f4df110 (diff)
downloadrust-113e27fcfcf20d3c241ca40c0f8c214aa578014d.tar.gz
rust-113e27fcfcf20d3c241ca40c0f8c214aa578014d.zip
Rollup merge of #81727 - m-ou-se:unstabilize-bits, r=Mark-Simulacrum
Revert stabilizing integer::BITS.

We agreed in the libs meeting just now to revert stablization, since the [breakage](https://github.com/rust-lang/rust/issues/81654) is significant throughout the ecosystem, through `lexical-core`.

cc https://github.com/rust-lang/rust/issues/76904

Fixes https://github.com/rust-lang/rust/issues/81654
Diffstat (limited to 'compiler/rustc_data_structures/src')
-rw-r--r--compiler/rustc_data_structures/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_data_structures/src/lib.rs b/compiler/rustc_data_structures/src/lib.rs
index 36d261fb737..5880bbd3de4 100644
--- a/compiler/rustc_data_structures/src/lib.rs
+++ b/compiler/rustc_data_structures/src/lib.rs
@@ -13,6 +13,7 @@
 #![feature(unboxed_closures)]
 #![feature(generator_trait)]
 #![feature(fn_traits)]
+#![feature(int_bits_const)]
 #![feature(min_specialization)]
 #![feature(auto_traits)]
 #![feature(nll)]