about summary refs log tree commit diff
path: root/src/librustc_data_structures/lib.rs
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2020-08-15 19:12:27 -0400
committerMark Rousskov <mark.simulacrum@gmail.com>2020-08-19 15:08:35 -0400
commitc8fe232836f7ecf1b1d76d82a91c8d0022be2786 (patch)
treedcb1de5186ab2fd1705632e07b6a1d580b742388 /src/librustc_data_structures/lib.rs
parentb287b56f97288cc4605329f76e31cb7604474aef (diff)
downloadrust-c8fe232836f7ecf1b1d76d82a91c8d0022be2786.tar.gz
rust-c8fe232836f7ecf1b1d76d82a91c8d0022be2786.zip
Add tagged pointer impl to data structures
Diffstat (limited to 'src/librustc_data_structures/lib.rs')
-rw-r--r--src/librustc_data_structures/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/librustc_data_structures/lib.rs b/src/librustc_data_structures/lib.rs
index 1937f615e70..af4a7bd1881 100644
--- a/src/librustc_data_structures/lib.rs
+++ b/src/librustc_data_structures/lib.rs
@@ -7,6 +7,7 @@
 //! This API is completely unstable and subject to change.
 
 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
+#![allow(incomplete_features)]
 #![feature(in_band_lifetimes)]
 #![feature(unboxed_closures)]
 #![feature(generators)]
@@ -23,6 +24,8 @@
 #![feature(associated_type_bounds)]
 #![feature(thread_id_value)]
 #![feature(extend_one)]
+#![feature(const_panic)]
+#![feature(const_generics)]
 #![allow(rustc::default_hash_types)]
 
 #[macro_use]
@@ -97,6 +100,7 @@ pub mod vec_linked_list;
 pub mod work_queue;
 pub use atomic_ref::AtomicRef;
 pub mod frozen;
+pub mod tagged_ptr;
 pub mod temp_dir;
 
 pub struct OnDrop<F: Fn()>(pub F);