Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
3k views

Where does the -DNDEBUG normally come from?

Our build system has somehow changed such that optimized builds are no longer getting the -DNDEBUG added to the compile line. I searched our makefiles and don't find this. So the question is, where ...
0
votes
2answers
215 views

Using #define NDEBUG give me errors in C++

If I define NDEBUG in the top of my main.cpp I get all this errors: 1> All outputs are up-to-date. 1>libcmt.lib(invarg.obj) : error LNK2005: __initp_misc_invarg already defined in ...
0
votes
2answers
500 views

turning off DEBUG macros for a specific function (NDEBUG)

I am using the following macro for printing debug information that I found on the web. It works great. However, I would like to turn-off debug printing for function A when debugging function B, which ...