EQEMu 5.7-DR6 is 2 patches behind Live at the moment. No, the latest patch or any fluxation of a fresh install is not compatible with any version of EQEMu.
__________________
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.
|