Counter Strike : Global Offensive Source Code
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.

25 lines
619 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose: This header, which must be the final line of a .h file,
  4. // causes all crt methods to stop using debugging versions of the memory allocators.
  5. // NOTE: Use memdbgon.h to re-enable memory debugging.
  6. //
  7. // $NoKeywords: $
  8. //=============================================================================//
  9. #ifdef MEM_OVERRIDE_ON
  10. #undef malloc
  11. #undef realloc
  12. #undef calloc
  13. #undef free
  14. #undef _expand
  15. #undef _msize
  16. #undef new
  17. #undef _aligned_malloc
  18. #undef _aligned_free
  19. #undef _malloc_dbg
  20. #undef MEM_OVERRIDE_ON
  21. #endif