SEQ45867 is a compatible client and has been added to the EQVerCheck list. Thank you for reporting, and it should be automatically updated on your next run of either EQVerCheck 1 or 2.
__________________
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.
|