about summary refs log tree commit diff
path: root/src/liballoc/lib.rs
diff options
context:
space:
mode:
authorCristi Cobzarenco <cristi.cobzarenco@gmail.com>2016-10-15 16:32:14 +0100
committerCristi Cobzarenco <cristi.cobzarenco@gmail.com>2016-11-05 00:50:41 +0000
commit651cf58f2e906fa6d333013891adca5074440bea (patch)
tree0a9de6025b1d0605d854beb2cbfbda06fb91c4d2 /src/liballoc/lib.rs
parentd34318dd538bf4c9175e4138b3e4188ea8211620 (diff)
downloadrust-651cf58f2e906fa6d333013891adca5074440bea.tar.gz
rust-651cf58f2e906fa6d333013891adca5074440bea.zip
Add `{into,from}_raw` to Rc and Arc
Diffstat (limited to 'src/liballoc/lib.rs')
-rw-r--r--src/liballoc/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs
index 31491106d97..0d450184ed8 100644
--- a/src/liballoc/lib.rs
+++ b/src/liballoc/lib.rs
@@ -99,6 +99,10 @@
 #[macro_use]
 extern crate std;
 
+// Module with internal macros used by other modules (needs to be included before other modules).
+#[macro_use]
+mod macros;
+
 // Heaps provided for low-level allocation strategies
 
 pub mod heap;