Skip to content

Commit 016875b

Browse files
committed
std: Silence remaining warnings
1 parent e46e97f commit 016875b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/libstd/std.rc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ not required in or otherwise suitable for the core library.
2020

2121
#[allow(vecs_implicitly_copyable)];
2222
#[deny(non_camel_case_types)];
23-
#[warn(deprecated_mode)];
23+
// XXX this is set to allow because there are two methods in serialization
24+
// that can't be silenced otherwise. Most every module is set to forbid
25+
#[allow(deprecated_mode)];
2426
#[forbid(deprecated_pattern)];
2527

2628
extern mod core(vers = "0.4");

0 commit comments

Comments
 (0)