diff --git a/src/libcore/cell.rs b/src/libcore/cell.rs index 27e03d2bf31..30b56a28a58 100644 --- a/src/libcore/cell.rs +++ b/src/libcore/cell.rs @@ -19,6 +19,7 @@ A dynamic, mutable location. Similar to a mutable option type, but friendlier. */ +#[mutable] pub struct Cell { priv value: Option }