Quote:
Originally Posted by bluejam
I did not experience the level restriction bug on multiple chars. #level 255 worked for me as for another guy that was playing at the same time.
|
I concur #level 255 worked fine.
__________________
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.
|