Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
What compiler? What's the real code snippet? – GManNickG Nov 30 '12 at 16:41

2 Answers

up vote 5 down vote accepted

Any time you have T&& v (where T is a template parameter), you have a so-called universal reference. Not only does it bind to rvalues, but also to lvalues. It's a greedy template. It will take anything it can get and give nothing back.

Overloading when a greedy template is involved is a bad idea, unless you know exactly what you're doing.

With universal references, there's often no need to special-case lvalues vs rvalues. Just std::forward<T>(v) the parameter and the value category will be propagated.

share|improve this answer
You are right, my functions are template functions. I edit my post to make that clear. Sorry! – Klaus Nov 30 '12 at 16:42
@Klaus: Edited. Also, what was the original reason for (trying to achieve) overloading on lvalueness vs rvalueness? – Xeo Nov 30 '12 at 16:51
My target was to write a serializer with overloaded operator & for io to the serializing object. The syntax is the same as boost::serialize. For that I also want to use a name/value pair which should be constructed on the fly with a make_nvp function. The main reason to do this on my own way is to play with new c++11 features :-) Maybe a have not understood all the rules for this game :-) – Klaus Nov 30 '12 at 16:58
1  
@Klaus: My question was why you specifically wanted to overload on lvalues and rvalues, why not overload on T const&? Especially when serializing, there's no benefit in move-semantics, since you can't just move the object to the disk. ;) – Xeo Nov 30 '12 at 17:00
@Klaus: As I said, a T&& will take anything it can get - including lvalues. And when you have two functions, whose parameter can equally well bind to an lvalue, you have an ambiguity. – Xeo Nov 30 '12 at 17:15
show 1 more comment

There is no need for a fix. Your code is C++11 conforming. The Standard for these cases says that the non-universal reference taking template is "more specialized" and it will take precedence.

So your call should pick the first template. If you remove the first template, it will take the second template. It is similar to this

// "universal" with respect to const qualification
template<typename T>
void f(T &);

template<typename T>
void f(const T&);

Now this will call the second template instance because while both instances have const int& as parameter type, the second instance is associated with a more specialized function template.

const int a = 0;
f(a);

Same in your case. Note that it is "complete", in the sense that it works for all combination of const and lvalue/rvalue

  • const lvalue. Both have const U& as parameter, but the T& one is more specialized, so it is taken by partial ordering.
  • non-const lvalue, your case. The T& one has U& as parameter, and the T&& one too has U& as parameter, but the T& one is more specialized, so it is taken by partial ordering.
  • const rvalue. The T& one has const U& as parameter and the T&& one has const U&& as parameter. An rvalue reference is preferred for binding an rvalue over an lvalue reference. Hence the T&& one is taken by overload resolution alone.
  • non-const rvalue. The T& one has U& as parameter. A non-const lvalue reference cannot bind to rvalues. Hence the T&& one, which has type U&& is picked by overload resolution alone.
share|improve this answer
If my code is c++11 conforming, my compiler has a bug :-) I use gcc 4.7.2. Could someone check the code with other compilers for me? – Klaus Dec 1 '12 at 19:25
@klaus i recommend to write a bugreport then. this is quite an issue. – Johannes Schaub - litb Dec 1 '12 at 19:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.