Quote:
Originally Posted by sysadmin
Devs can only answer that question. I think they will fix it when they can.
|
Its not a problem. Technically the system is working-- its not letting a mob cast a beneficial spell on a PC.
__________________
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.
|