about summary refs log tree commit diff
path: root/src/librustc_data_structures/lib.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <nnethercote@mozilla.com>2018-11-09 09:57:02 +1100
committerNicholas Nethercote <nnethercote@mozilla.com>2018-11-13 06:21:57 +1100
commitab8a947fa0e8f8397ad9c831741e6429fbed2c0b (patch)
tree7bbcaea5d39b040288b9493b2b75e57e3cb1f3ba /src/librustc_data_structures/lib.rs
parent5a2ca1a6f18aa93d3120761f614ec2d39b4cb1ac (diff)
downloadrust-ab8a947fa0e8f8397ad9c831741e6429fbed2c0b.tar.gz
rust-ab8a947fa0e8f8397ad9c831741e6429fbed2c0b.zip
Move `static_assert!` into librustc_data_structures.
This means it can be used by more crates.
Diffstat (limited to 'src/librustc_data_structures/lib.rs')
-rw-r--r--src/librustc_data_structures/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustc_data_structures/lib.rs b/src/librustc_data_structures/lib.rs
index 07e5548216f..135abebdacb 100644
--- a/src/librustc_data_structures/lib.rs
+++ b/src/librustc_data_structures/lib.rs
@@ -57,6 +57,7 @@ extern crate rustc_cratesio_shim;
 
 pub use rustc_serialize::hex::ToHex;
 
+pub mod macros;
 pub mod svh;
 pub mod base_n;
 pub mod bit_set;