Quote:
Originally Posted by arigo
Why are my compiled executes like 3x larger than the precompiled version you can download on sourceforge? I disabled debug and everything, It's annoying. My compiled version also uses more bandwidth per client.
|
It sounds like when you're compiling your including alot more features into your compiles than what comes in the precompiles, assuming that debug really is shut off..I'd check that again...
__________________
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.
|