Skip to content

Instantly share code, notes, and snippets.

@ScatteredRay
Created August 18, 2009 18:56
Show Gist options
  • Save ScatteredRay/169885 to your computer and use it in GitHub Desktop.
Save ScatteredRay/169885 to your computer and use it in GitHub Desktop.
template <typename t>
void DeleteAllIn(t& iteratable)
{
for(t::iterator it = iteratable.begin(); it != iteratable.end(); it++)
delete *it;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment