diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-10-03 14:52:09 -0700 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-10-04 16:48:57 -0700 |
| commit | 65c96f849ff1a76d4867c17703c0b384ccd1bb65 (patch) | |
| tree | 402a3533d9bab9652789135ea6e9fbab3aea271d /src/libcore/util.rs | |
| parent | fe12da0864ade257eb9b7cffbb96e5cb24af325e (diff) | |
| download | rust-65c96f849ff1a76d4867c17703c0b384ccd1bb65.tar.gz rust-65c96f849ff1a76d4867c17703c0b384ccd1bb65.zip | |
Forbid deprecated modes again in core
Sadly, there's only one file that requires deprecated modes (stackwalk)... So, forbid them everywhere else.
Diffstat (limited to 'src/libcore/util.rs')
| -rw-r--r-- | src/libcore/util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/util.rs b/src/libcore/util.rs index aa1fe14ba88..6c633f16abf 100644 --- a/src/libcore/util.rs +++ b/src/libcore/util.rs @@ -5,7 +5,7 @@ Miscellaneous helpers for common patterns. */ // NB: transitionary, de-mode-ing. -// tjc: re-forbid deprecated modes after snapshot +#[forbid(deprecated_mode)]; #[forbid(deprecated_pattern)]; use cmp::Eq; |
