Remove unnecessary const_cast

This commit is contained in:
Phillip Stephens 2022-10-20 07:30:53 -07:00
parent ff40d50c8d
commit 724dc8226e
1 changed files with 2 additions and 2 deletions

View File

@ -54,10 +54,10 @@ void CToken::Unlock() {
}
CToken& CToken::operator=(const CToken& other) {
if (&other == const_cast< const CToken* >(this)) {
if (&other == this) {
return *this;
}
Unlock();
RemoveRef();
x0_objRef = other.x0_objRef;