1
Fork 0

Forbid deprecated modes again in core

Sadly, there's only one file that requires deprecated modes
(stackwalk)... So, forbid them everywhere else.
This commit is contained in:
Tim Chevalier 2012-10-03 14:52:09 -07:00
parent fe12da0864
commit 65c96f849f
27 changed files with 48 additions and 23 deletions

View file

@ -7,8 +7,8 @@
* some heavy-duty uses, try std::rope.
*/
#[warn(deprecated_mode)];
#[warn(deprecated_pattern)];
#[forbid(deprecated_mode)];
#[forbid(deprecated_pattern)];
use cmp::{Eq, Ord};
use libc::size_t;