The big NULL replacement party part 5.

Right. ' = NULL' would get a lot of these.
This commit is contained in:
Jason Felds
2013-05-03 23:39:52 -04:00
parent 328c41eec0
commit 28e5148dec
233 changed files with 7448 additions and 7447 deletions
+2 -2
View File
@@ -13,7 +13,7 @@ void AutoActor::Unload()
AutoActor::AutoActor( const AutoActor &cpy )
{
if( cpy.m_pActor == nullptr )
m_pActor = NULL;
m_pActor = nullptr;
else
m_pActor = cpy.m_pActor->Copy();
}
@@ -23,7 +23,7 @@ AutoActor &AutoActor::operator=( const AutoActor &cpy )
Unload();
if( cpy.m_pActor == nullptr )
m_pActor = NULL;
m_pActor = nullptr;
else
m_pActor = cpy.m_pActor->Copy();
return *this;