Skip to content

Instantly share code, notes, and snippets.

@kalman5
Created June 7, 2014 18:05
Show Gist options
  • Select an option

  • Save kalman5/fcc58a89c593ce08c50e to your computer and use it in GitHub Desktop.

Select an option

Save kalman5/fcc58a89c593ce08c50e to your computer and use it in GitHub Desktop.
Operator new signatures
void* operator new (std::size_t size);
void* operator new (std::size_t size, const std::nothrow_t& nothrow_value) noexcept;
void* operator new (std::size_t size, void* ptr) noexcept;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment