View Single Post
  #5  
Old 06-02-2005, 02:41 PM
Cisyouc
Demi-God
 
Join Date: Jun 2004
Location: Heaven.
Posts: 1,260
Default

Quote:
Originally Posted by arigo
Well, that wasn't in my preprocessor definitions. However, "NDEBUG" /D was. I added EQDEBUG=0 and went to compile, and my execute came out same size.

Edit: actually "NDEBUG" /D was was a part of common options. My bad. Still, EQDEBUG=0 isn't effective.
Still, the most likely suspect is the fact that you probably have more things defined than the precompiles, or the precompiles are of an earlier version.
__________________
namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
C++ is wonderful.
Reply With Quote