Skip to content

Instantly share code, notes, and snippets.

Created July 14, 2013 14:03
Show Gist options
  • Save anonymous/5994378 to your computer and use it in GitHub Desktop.
Save anonymous/5994378 to your computer and use it in GitHub Desktop.
int main()
{
bool deleted = false;
try
{
int *ptr = new int(5);
}
catch(...)
{
delete ptr;
deleted = true;
}
if (!deleted)
delete ptr;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment