Chromium Code Reviews| Index: base/memory/ref_counted.h |
| diff --git a/base/memory/ref_counted.h b/base/memory/ref_counted.h |
| index 05fc4c4d3ff76e3554fbbbeff37b5d2856a9f242..20fe49c926de273ded41d6276fd434b1521f2821 100644 |
| --- a/base/memory/ref_counted.h |
| +++ b/base/memory/ref_counted.h |
| @@ -75,7 +75,7 @@ class BASE_EXPORT RefCountedBase { |
| } |
| private: |
| - mutable int ref_count_; |
| + mutable size_t ref_count_; |
|
Tom Sepez
2016/09/22 17:55:35
nit: should really be an intprt_t, in case we go b
|
| #ifndef NDEBUG |
| mutable bool in_dtor_; |
| #endif |