The only thing to do is patch and wait. I believe Krusher's has the development build up that works with live, but im not positive. Asking For/Providing backpatches on the forums is against the rules.
__________________
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.
|