core: Mark gc and stackwalk as demoded

This commit is contained in:
Brian Anderson 2012-09-20 17:29:20 -07:00
parent ee426f177b
commit 19ad88c2b8
2 changed files with 8 additions and 0 deletions

View File

@ -25,6 +25,10 @@ with destructors.
*/
// NB: transitionary, de-mode-ing.
#[forbid(deprecated_mode)];
#[forbid(deprecated_pattern)];
use stackwalk::Word;
use libc::size_t;
use libc::uintptr_t;

View File

@ -1,5 +1,9 @@
#[doc(hidden)]; // FIXME #3538
// NB: transitionary, de-mode-ing.
#[forbid(deprecated_mode)];
#[forbid(deprecated_pattern)];
use cast::reinterpret_cast;
use ptr::offset;
use sys::size_of;