program step into non defined area
-
good afternoon, all I am trying to get rid of one of the old link library from my application I removed it from preprocessor definition, took all the link library files from LINK, but the program will still step into the area says #ifndef __XYZ_APP__ when I am doing debugging.....It really shouldn't behave like this, I also checked if anything like #define __XYZ_APP in header ....still no luck does any body know why is this happening? thank you for your time -- modified at 18:25 Wednesday 7th September, 2005
-
good afternoon, all I am trying to get rid of one of the old link library from my application I removed it from preprocessor definition, took all the link library files from LINK, but the program will still step into the area says #ifndef __XYZ_APP__ when I am doing debugging.....It really shouldn't behave like this, I also checked if anything like #define __XYZ_APP in header ....still no luck does any body know why is this happening? thank you for your time -- modified at 18:25 Wednesday 7th September, 2005
#ifndef __XYZ_APP__ this means: if __XYZ_APP__ is not defined, compile the code inside of me. Since you undefined it, that is what should happen
-
good afternoon, all I am trying to get rid of one of the old link library from my application I removed it from preprocessor definition, took all the link library files from LINK, but the program will still step into the area says #ifndef __XYZ_APP__ when I am doing debugging.....It really shouldn't behave like this, I also checked if anything like #define __XYZ_APP in header ....still no luck does any body know why is this happening? thank you for your time -- modified at 18:25 Wednesday 7th September, 2005
a lot of confusion to me :) ok. Preprocessor symbols can be defined in two ways. (As I know) 1. in the source or header files 2. In the project setting. Please check the project settings, preprossor options.. BAsically All debug relateted preprocessor are defined in project setting only.. " Action without vision is only passing time, Vision without action is merely day dreaming, But vision with action can change the world " - Words from Nelson Mandela Thanks & Regards, Gopalakrishnan