February 21st, 2011 10:55 PM
I mentioned a "define switch". This is a define switch:
#ifdef DEBUG
// do something
#else
// do nothing
#endif
February 21st, 2011 05:09 AM
I meant the macro or function that uses __FILE__ is set to a "do nothing" state. I didn't give an example, so you assumed wrong.
On the contrary, it's not my code. I'm not obligated to fix...
February 19th, 2011 04:34 PM
MSVC++ 2008. I can see the full filepaths in my hex editor. I'm compiling a dynamic library (.dll) if that matters.
I thought I just ask to see if there's an easy way to get rid of them, before...
February 19th, 2011 02:23 AM
Thanks, I understand their purpose, but that doesn't diminish the fact I want them removed from my release build.
I take it from your response, there's no way to turn them off.
February 18th, 2011 10:20 PM
I have this C++ library that uses __LINE__ and _FILE__ preprocessor directives all over the place,
and I would like to disable it or turn it off without having to explicitly remove them myself.
...
March 22nd, 2009 01:26 AM
I would think the child windows are placed wherever you specified their CRect(left,top,right,bottom) coordinates during creation.
These coords should be relative to its parent starting at the upper...
March 20th, 2009 03:22 PM
Encryption is usually done on the bit level, you know like XOR. I would not add or subtract values. This is more obfuscation than encryption.
March 13th, 2009 04:20 AM
Thanks, I didn't know VS2008 had it.
March 12th, 2009 07:25 PM
Just wondering, what do people use for regular expression matching for C/C++?
I'm using the MFC framework. It doesn't necessarily have to be for CString, but it would be nice. Something like...