The zone-specific skies are back on live, it might make more sense to help update to live then to reformat the 5.7-DR6 fixes into a previous version.
Just a thought.
__________________
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.
|