Created
June 7, 2014 18:05
-
-
Save kalman5/fcc58a89c593ce08c50e to your computer and use it in GitHub Desktop.
Operator new signatures
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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