mirror of https://github.com/axmolengine/axmol.git
Silenced Static Analyzer Warning by removing unneeded assignment. (Value never read.)
This commit is contained in:
parent
cbeb2bb1b9
commit
9a8d1ca8b8
|
@ -76,7 +76,7 @@ CCObject* CCAction::copyWithZone(CCZone *pZone)
|
|||
else
|
||||
{
|
||||
pRet = new CCAction();
|
||||
pZone = pNewZone = new CCZone(pRet);
|
||||
pNewZone = new CCZone(pRet);
|
||||
}
|
||||
//copy member data
|
||||
pRet->m_nTag = m_nTag;
|
||||
|
|
Loading…
Reference in New Issue