Skip to content

Instantly share code, notes, and snippets.

@jonluca
Created March 15, 2018 04:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonluca/522bf38a223b1e778fff15f2d4e7806e to your computer and use it in GitHub Desktop.
Save jonluca/522bf38a223b1e778fff15f2d4e7806e to your computer and use it in GitHub Desktop.
Testing Zero
int mVar = 0;
void setVarToOne(int* mVar){
if(mVar) *mVar = 1;
}
setVarToOne(nullptr);
ASSERTEQ(mVar,0); //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment