Hi all,
for a current project where we have old compilers not supporting C++11's auto keyword it would be cool to have a refactor helper for it, that changes auto to the called methods explicit result.
Having
auto x = myclass->mymethod(); // mymethod returns shared_ptr<MyOtherType>
shall refactor to
shared_ptr<MyOtherType> x = myclass->mymethod();
Any change to add this in one of the next releases?
Regards,
S+?ren