Quote:
Originally Posted by Damilis
The computer that is running the Simulation that we all exist in, aka, the Matrix, reported an Overflow Error and had to be rebooted. It also has something to do with a memory leak in the Simulation that causes a Leap Year every 4 or so years. 
|
I told them to expand that buffer...
__________________
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.
|