diff options
| author | 2011-04-26 11:26:33 -0700 | |
|---|---|---|
| committer | 2011-04-26 11:26:33 -0700 | |
| commit | c364113a1b17211c1956b262c06e5c4f9061638c (patch) | |
| tree | c9cf2fa3c1b62c103925a48b19cd72e069e477da /libs/utils/RefBase.cpp | |
| parent | 26603203b699e1da4baec3e0fb44fbab4899c7b0 (diff) | |
| parent | e6b21626a5df95b66e0a0527564e2b9da100c5c3 (diff) | |
Merge "libutils: Fix an improper const-cast in RefBase"
Diffstat (limited to 'libs/utils/RefBase.cpp')
| -rw-r--r-- | libs/utils/RefBase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/utils/RefBase.cpp b/libs/utils/RefBase.cpp index 0bd1af4ebf..d28b751a47 100644 --- a/libs/utils/RefBase.cpp +++ b/libs/utils/RefBase.cpp @@ -480,7 +480,7 @@ void RefBase::weakref_type::printRefs() const void RefBase::weakref_type::trackMe(bool enable, bool retain) { - static_cast<const weakref_impl*>(this)->trackMe(enable, retain); + static_cast<weakref_impl*>(this)->trackMe(enable, retain); } RefBase::weakref_type* RefBase::createWeak(const void* id) const |