summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-09-20 16:40:08 -0700
committerBrian Anderson <banderson@mozilla.com>2012-09-20 16:40:18 -0700
commite14a0eec23b49f51a32ea254f2749f2f08386f5b (patch)
treeef12c525a1e8f20411b838c497c6bd1f218654a2 /src/libcore
parent89bbbd612a1b7380b402acf335f287c8d57fca3d (diff)
downloadrust-e14a0eec23b49f51a32ea254f2749f2f08386f5b.tar.gz
rust-e14a0eec23b49f51a32ea254f2749f2f08386f5b.zip
core: Indicate that flate is demoded
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/flate.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libcore/flate.rs b/src/libcore/flate.rs
index 5f317ee0f07..a14b2997f0b 100644
--- a/src/libcore/flate.rs
+++ b/src/libcore/flate.rs
@@ -4,6 +4,10 @@ Simple compression
 
 */
 
+// NB: transitionary, de-mode-ing.
+#[forbid(deprecated_mode)];
+#[forbid(deprecated_pattern)];
+
 use libc::{c_void, size_t, c_int};
 
 extern mod rustrt {