1

The High Integrity C++ Standards suggest that rvalue arguments to functions can be deleted thus preventing implicit conversions.

http://www.codingstandard.com/rule/8-3-4-define-delete-functions-with-parameters-of-type-rvalue-reference-to-const/

I've found that the behaviour for primitives and user-defined types is very different.

struct A { };

struct B { B(const A& ) {} };

template <class T>
void foo(const T&&) = delete;  // 1 - deleted rvalue overload. const intentional.

void foo(B) {}                 // 2

void foo(int) {}               // 3

int main(int argc, char* argv[])
{
  A a;
  foo(a);   // This resolves to 2
  foo(3.3); // This resolves to 1
  foo(2);   // This resolves to 3 (as expected).
}       

Why does a deleted rvalue overload prevent an implicit conversion to int but not from one user-defined type to another?

2
  • MM pointed out that my code example confuses matters. Commented May 16, 2017 at 6:48
  • The second half of this sentence is not accurate either "The High Integrity C++ Standards suggest that rvalue arguments to functions can be deleted thus preventing implicit conversions.". RValue overloads can be deleted but HIPCC does not suggest that this can prevent implicit conversions. Commented May 16, 2017 at 7:12

3 Answers 3

2

The High Integrity C++ Standards suggest that rvalue arguments to functions can be deleted thus preventing implicit conversions.

No, only a forwarding reference overload disables ICS (Implicit Conversion Sequence) for all other overloads in the overload set. Make it a forwarding reference, and see ICS disabled (Coliru Link)

template <class T>
void foo(const T&&) = delete;  // introduces a qualification match

The above code adds a qualification match to the overload. Thus, ICS is still in play.

Why foo(3.3) failed is because 3.3 is an prvalue of type double which will match better with the rvalue overload than converting to int. Because qualification match is ranked better than a conversion match

Sign up to request clarification or add additional context in comments.

6 Comments

Declaring void foo(const B&&) = delete; Does prevent implicit conversion. My code example confuses matters though. I'll post a follow up question.
@jbcoe, yes, deleting a const rvalue overload for a particular type, also disables ICS for that type. But deleting a forwarding reference overload, disables ICS for all the entire overload set.
Thanks. Why is the behaviour different for functions and function templates?
Deleting a forwarding reference is too aggressive as it prevents invocation with a non-const lvalue reference.
posted follow-up question: stackoverflow.com/questions/43995946/…
|
1

In your code, there is no difference in treatment between user-defined types and primitive types. The difference between the behaviour of these two lines:

foo(a);
foo(3.3);

is that a is an lvalue, and 3.3 is an rvalue. The rvalue argument matches your overload 1 (which only accepts rvalues), the lvalue argument does not.

If you try to invoke foo<A> with an rvalue argument it will also match 1 and fail, e.g. foo(A{});.

4 Comments

You are right. I'm a little puzzled by this. Why does an implicit conversion not also match the rvalue overload? (Perhaps this is worth asking in a separate question?)
@jbcoe In overload resolution, templates are instantiated according to the arguments provided. Then, overload resolution occurs amongst the instatantions and non-template functions (which involves considering implicit conversion sequences and so on).
For example, in foo(a), the overload set is foo(B) and foo(int) - there was no possible template instantiation for a as argument. But for foo(3.3) the overload set is foo<double>(const double&&), foo(B) and foo(int). The ranking process selects the first of those three because direct reference binding is ranked ahead of a floating-to-int conversion
posted follow-up question: stackoverflow.com/questions/43995946/…
1

There are 3 possible overloads

  • 1 is viable.
  • 2 is viable
  • 3 isn't

2 is better match (template (non exact match) vs regular method (with one user define conversion)).

You may look at http://en.cppreference.com/w/cpp/language/overload_resolution to see a complete set of rules needed

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.