Made ref_count a word sized value.

This commit is contained in:
Michael Bebenita 2010-08-11 14:05:50 -07:00
parent ff93e5e196
commit d584de7a37

View file

@ -76,7 +76,7 @@ template <typename T>
struct
rc_base
{
int32_t ref_count;
intptr_t ref_count;
void ref() {
++ref_count;