Skip to content

Instantly share code, notes, and snippets.

@kkabdol
Last active July 7, 2016 07:56
Show Gist options
  • Select an option

  • Save kkabdol/c78834d6cb5dbaf049e897b9daf82ecd to your computer and use it in GitHub Desktop.

Select an option

Save kkabdol/c78834d6cb5dbaf049e897b9daf82ecd to your computer and use it in GitHub Desktop.
delete null pointers
AClass::~AClass()
{
//if( mObj != null ) // no need to check
//{
delete mObj;
//}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment