I have overloaded methods:
template<typename AnyType>
void AnyFunc(AnyType &t);
template<typename AnyType>
void AnyFunc(AnyType &&t);
I have a caller which holds a pointer and want to use one of the functions:
MyType* ptr=new MyType();
AnyFunc(*ptr);
The last line runs into compile error: ambiguous overload for AnyFunc
How can I select the function I need? The simple case is to use:
AnyFunc(std::move(*ptr));
which select the void AnyFunc(AnyType &&t); but this is not what I want. I need the
void AnyFunc(AnyType &t); method.