Skip to content

Instantly share code, notes, and snippets.

@dmikurube
Created May 25, 2012 07:40
Show Gist options
  • Save dmikurube/2786440 to your computer and use it in GitHub Desktop.
Save dmikurube/2786440 to your computer and use it in GitHub Desktop.
Force global operator new/delete
int main() {
Class* x = ::new Class();
::delete x;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment