diff options
| author | 2011-04-26 11:45:46 -0700 | |
|---|---|---|
| committer | 2011-04-26 11:45:46 -0700 | |
| commit | f3faf0bc3d201cec500d6cfdc8db434bd8653e45 (patch) | |
| tree | 5bc1c0dda6595cc3972013d6d5322b9de98c7370 /libs/utils/RefBase.cpp | |
| parent | 62d9009da176fed40de3d3a20f635625bbb454b6 (diff) | |
| parent | dd3718af9067adfa53f598f16d443ebe53157f3b (diff) | |
am bb93dad9: am bb10986c: am 13ce221e: Merge "libutils: Fix an improper const-cast in RefBase"
* commit 'bb93dad9250c0ee8330ab37bbdcd2eb8bfc0f930':
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 bb6c1255f3..2034486aac 100644 --- a/libs/utils/RefBase.cpp +++ b/libs/utils/RefBase.cpp @@ -524,7 +524,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 |