am 13ce221e: Merge "libutils: Fix an improper const-cast in RefBase"
* commit '13ce221e4316f7956ba072e774a7b97646e5d99b': libutils: Fix an improper const-cast in RefBase
This commit is contained in:
commit
b5e7f05190
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user