about summary refs log tree commit diff
path: root/src/libcore/managed.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcore/managed.rs')
-rw-r--r--src/libcore/managed.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libcore/managed.rs b/src/libcore/managed.rs
index 30ebeda3f5c..4eda5e7b5e8 100644
--- a/src/libcore/managed.rs
+++ b/src/libcore/managed.rs
@@ -16,9 +16,9 @@ use ptr;
 
 pub mod raw {
 
-    pub const RC_EXCHANGE_UNIQUE : uint = (-1) as uint;
-    pub const RC_MANAGED_UNIQUE : uint = (-2) as uint;
-    pub const RC_IMMORTAL : uint = 0x77777777;
+    pub static RC_EXCHANGE_UNIQUE : uint = (-1) as uint;
+    pub static RC_MANAGED_UNIQUE : uint = (-2) as uint;
+    pub static RC_IMMORTAL : uint = 0x77777777;
 
     use intrinsic::TyDesc;