Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Defines whether the iterator debugging feature is enabled in a debug build. By default, iterator debugging is enabled. For more information, see Debug Iterator Support.
Important
Use _ITERATOR_DEBUG_LEVEL to control _HAS_ITERATOR_DEBUGGING. For more information, see _ITERATOR_DEBUG_LEVEL.
Remarks
To enable iterator debugging in debug builds, set _HAS_ITERATOR_DEBUGGING to 1:
#define _HAS_ITERATOR_DEBUGGING 1
_HAS_ITERATOR_DEBUGGING cannot be set to 1 in retail builds.
To disable iterator debugging in debug builds, set _HAS_ITERATOR_DEBUGGING to 0:
#define _HAS_ITERATOR_DEBUGGING 0