Page 1 of 1

Stepping Into Header File

Posted: Mon Mar 08, 2010 7:04 pm
by fimius
When I'm debugging and I step into the program my debugger opens all of my header files so I step into all of the functions within the header files. How can I turn this off?

Re: Stepping Into Header File

Posted: Mon Mar 08, 2010 9:45 pm
by eranif
Make sure that you compile with debugging flag ON (-g) and optimization turned off (-O0)

Eran