diff options
| author | Cristi Cobzarenco <cristi.cobzarenco@gmail.com> | 2016-10-15 16:32:14 +0100 |
|---|---|---|
| committer | Cristi Cobzarenco <cristi.cobzarenco@gmail.com> | 2016-11-05 00:50:41 +0000 |
| commit | 651cf58f2e906fa6d333013891adca5074440bea (patch) | |
| tree | 0a9de6025b1d0605d854beb2cbfbda06fb91c4d2 /src/liballoc/lib.rs | |
| parent | d34318dd538bf4c9175e4138b3e4188ea8211620 (diff) | |
| download | rust-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.rs | 4 |
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; |
