summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2013-06-28 14:36:33 -0700
committerDaniel Micay <danielmicay@gmail.com>2013-06-29 00:56:36 -0400
commit22b7eb38024afc38dbcfaa18796371b7d6b5b1d0 (patch)
tree9e7ea87772d5c812addbdb854ccc703ded0bc733 /src/libstd
parent4af7ebcd8f72356880abccc411a1632e8f07e1c1 (diff)
downloadrust-22b7eb38024afc38dbcfaa18796371b7d6b5b1d0.tar.gz
rust-22b7eb38024afc38dbcfaa18796371b7d6b5b1d0.zip
Rename #[mutable] to #[no_freeze]
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/cell.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/cell.rs b/src/libstd/cell.rs
index e1d2b246dd3..53ea11f2b05 100644
--- a/src/libstd/cell.rs
+++ b/src/libstd/cell.rs
@@ -22,7 +22,8 @@ A dynamic, mutable location.
 Similar to a mutable option type, but friendlier.
 */
 
-#[mutable]
+#[mutable] // XXX remove after snap
+#[no_freeze]
 #[deriving(Clone, DeepClone, Eq)]
 #[allow(missing_doc)]
 pub struct Cell<T> {