I have read that we can use
#define _HAS_ITERATOR_DEBUGGING 0
#define _SECURE_SCL 0
to disable the checked-iterator behaviour in VC++ 5.0
However,instead of defining this at the top of each c++ file,is there some place in project settings where i can define this ,so that it applies to all c++ files?
#define _HAS_ITERATOR_DEBUGGING 0
#define _SECURE_SCL 0
to disable the checked-iterator behaviour in VC++ 5.0
However,instead of defining this at the top of each c++ file,is there some place in project settings where i can define this ,so that it applies to all c++ files?