am fbb0e9f9: am bb93dad9: am bb10986c: am 13ce221e: Merge "libutils: Fix an improper const-cast in RefBase"
* commit 'fbb0e9f9846e185ba8ded63d754c4e61b1499b90': libutils: Fix an improper const-cast in RefBase
This commit is contained in:
commit
7e002d9a3f
@ -524,7 +524,7 @@ void RefBase::weakref_type::printRefs() const
|
|||||||
|
|
||||||
void RefBase::weakref_type::trackMe(bool enable, bool retain)
|
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
|
RefBase::weakref_type* RefBase::createWeak(const void* id) const
|
||||||
|
Loading…
Reference in New Issue
Block a user