Hi, I'm using a library (dime dxf library) which has a function that contains:
#ifndef NDEBUG fprintf(stderr, "debugging messages...\n"); #endif But, in my inline code, using a "#define NDEBUG" does not turn-off the message. I've searched the libraries, and cannot find anywhere that NDEBUG was #undef'd or #define'd. Furthermore, placing a #define NDEBUG in the .h file doesn't even disable it. Any suggestions? Thanks, Eric