Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
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