Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
378 B

  1. // delop2 -- operator delete(void *, nothrow_t) REPLACEABLE
  2. #include <new>
  3. #if (1200 <= _MSC_VER)
  4. void __cdecl operator delete(void *p,
  5. const std::nothrow_t&) _THROW0()
  6. { // free an allocated object
  7. delete(p);
  8. }
  9. #else
  10. #endif
  11. /*
  12. * Copyright (c) 1999 by P.J. Plauger. ALL RIGHTS RESERVED.
  13. * Consult your license regarding permissions and restrictions.
  14. V2.33:0009 */