summary refs log tree commit diff
path: root/src/libstd/cell.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-06-28 22:25:48 -0700
committerbors <bors@rust-lang.org>2013-06-28 22:25:48 -0700
commit4e78c1e2a89f65a1827e1f65afc741cee05cee0a (patch)
treed56131a1a347b4cc8c3e79dfda3b9a47221bcaa4 /src/libstd/cell.rs
parentd681bccb6a2141012a747cc272991a7440cb2408 (diff)
parent21cc0ccea10bb9d1b83612d26c8e62d06fe365a1 (diff)
downloadrust-4e78c1e2a89f65a1827e1f65afc741cee05cee0a.tar.gz
rust-4e78c1e2a89f65a1827e1f65afc741cee05cee0a.zip
auto merge of #7479 : mozilla/rust/rollup, r=thestinger
22b7eb3 r=thestinger 
28a3613 r=cmr
a0c31ec r=bstrie
ee7307e r=thestinger
b9cf6a3 r=thestinger
Diffstat (limited to 'src/libstd/cell.rs')
-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> {