mirror of https://github.com/PrimeDecomp/prime.git
Remove unnecessary const_cast
This commit is contained in:
parent
ff40d50c8d
commit
724dc8226e
|
@ -54,10 +54,10 @@ void CToken::Unlock() {
|
||||||
}
|
}
|
||||||
|
|
||||||
CToken& CToken::operator=(const CToken& other) {
|
CToken& CToken::operator=(const CToken& other) {
|
||||||
if (&other == const_cast< const CToken* >(this)) {
|
if (&other == this) {
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
Unlock();
|
Unlock();
|
||||||
RemoveRef();
|
RemoveRef();
|
||||||
x0_objRef = other.x0_objRef;
|
x0_objRef = other.x0_objRef;
|
||||||
|
|
Loading…
Reference in New Issue