diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2014-05-06 22:03:14 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2014-05-10 19:58:17 -0400 |
| commit | 138437956c9ab78aede9bb698aa80f9367b3b75a (patch) | |
| tree | b1614baf6a134ee7e8a6f728c86ceb9f4996dd60 /src/libstd/lib.rs | |
| parent | aaf6e06b01c4f7490e71693d3c96f466032e80d0 (diff) | |
| download | rust-138437956c9ab78aede9bb698aa80f9367b3b75a.tar.gz rust-138437956c9ab78aede9bb698aa80f9367b3b75a.zip | |
initial port of the exchange allocator to jemalloc
In stage0, all allocations are 8-byte aligned. Passing a size and alignment to free is not yet implemented everywhere (0 size and 8 align are used as placeholders). Fixing this is part of #13994. Closes #13616
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 0ac6f1dba4f..3f22a76c1f4 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -110,6 +110,7 @@ // Don't link to std. We are std. #![no_std] +#![allow(deprecated)] #![deny(missing_doc)] // When testing libstd, bring in libuv as the I/O backend so tests can print |
