Im not sure Im too sympathetic with what you're saying. In the tutorials section there is an up-to-date Play Guide, and on the front page it talks about 5.9-DR2's release and compatability with EQLive...
Regardless, there was a patch on the 16th (today) which may have broken 5.9-DR2. Can anyone verify this or not?
__________________
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.
|