Run time error checks

  • Thread starter Thread starter AP
  • Start date Start date
A

AP

Hi,
In VC7.1 there is the compiler option to turn on run time error checks
(/RTC compiler options). So if there are any uninitialized data a
dialog pops up.
I know it's useful but is there a way to turn this off for the session
at least because it is a nuisance while debugging?
It's not always practical to fix the un-initialized data the minute
you hit it, especially if it is coming from a 3rd person's code base.

Thanks in advance.

AP
 
I know it's useful but is there a way to turn this off for the session
at least because it is a nuisance while debugging?

As far as I'm aware, you can't switch it off on the fly, so my
suggestion would be to create another debug build configuration that
doesn't use this setting.

Merry Christmas
Dave
 
Back
Top