From d584de7a37958cc302ce01c4f8e250ed1fe9685a Mon Sep 17 00:00:00 2001 From: Michael Bebenita Date: Wed, 11 Aug 2010 14:05:50 -0700 Subject: Made ref_count a word sized value. --- src/rt/rust_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/rt/rust_internal.h') diff --git a/src/rt/rust_internal.h b/src/rt/rust_internal.h index 46ea843f..17148399 100644 --- a/src/rt/rust_internal.h +++ b/src/rt/rust_internal.h @@ -76,7 +76,7 @@ template struct rc_base { - int32_t ref_count; + intptr_t ref_count; void ref() { ++ref_count; -- cgit v1.2.3