Suppose I have a class
template <typename T>
class A {
public:
template <typename V>
void f(std::tr1::shared_ptr<const std::vector<V> > v1,
std::tr1::shared_ptr<const std::vector<float> > v2) {}
};
The following does not compile:
A<string> a;
std::tr1::shared_ptr<std::vector<float> > v1(new std::vector<float>());
std::tr1::shared_ptr<std::vector<float> > v2(new std::vector<float>());
a.f(v1, v2);
The compiler error is:
error: no matching function for call to 'A<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >::f(std::tr1::shared_ptr<std::vector<float, std::allocator<float> > >&, std::tr1::shared_ptr<std::vector<float, std::allocator<float> > >&)'
The compiler could not make std::tr1::shared_ptr<std::vector<float> > into
std::tr1::shared_ptr<const std::vector<float> > for the first argument. Yet it could for the second (non-template argument).
One solution to this is to change the call to f(), call it like this f<float>(...).
Another solution is to declare v1 as shared_ptr to const vector<float>.
Question 1) Why is template instantiation behaving so differently here ?
Question 2) My understanding of having a shared_ptr as argument to a method is that the method cannot change what the shared_ptr is pointing to. If we change the shared_ptr's to raw pointers and v1, v2 as raw pointers to vectors, then the code will compile fine. What is it about shared_ptrs that breaks template deduction?
v1tostd::tr1::shared_ptr<V>. – sbi Apr 8 '11 at 20:03:)– sbi Apr 8 '11 at 20:24