Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was surprised the following code resulted in a could not deduce template argument for T error:

struct foo
{
  template <typename T>
  void bar(int a, T b = 0.0f)
  {
  }
};

int main()
{
  foo a;
  a.bar(5);

  return 0;
}

Calling a.bar<float>(5) fixes the issue. Why can't the compiler deduce the type from the default argument?

share|improve this question

2 Answers

up vote 5 down vote accepted

In C++03, the specification explicitly prohibits the default argument from being used to deduce a template argument (C++03 ยง14.8.2/17):

A template type-parameter cannot be deduced from the type of a function default argument.

In C++11, you can provide a default template argument for the function template:

template <typename T = float>
void bar(int a, T b = 0.0f) { }

The default template argument is required, though. If the default template argument is not provided, the default function argument is still not usable for template argument deduction. Specifically, the following applies (C++11 14.8.2.5/5):

The non-deduced contexts are:

...

  • A template parameter used in the parameter type of a function parameter that has a default argument that is being used in the call for which argument deduction is being done.
share|improve this answer
1  
While saying "Because the standard says so" is a valid answer, it would be nice to know the reasoning behind it. – Jesse Good Mar 9 '12 at 4:39
Among other reasons, different declarations of a function can declare different default arguments (I'm fairly certain the same applies to function templates.) – James McNellis Mar 9 '12 at 4:42

A good reason might be that

void foo(bar, xyzzy = 0);

is similar to a pair of overloads.

void foo(bar b) { foo(b, 0);  }
foo(bar, xyzzy);

Moreover, sometimes it is advantageous to refactor it into such:

void foo(bar b) { /* something other than foo(b, 0); */ }
foo(bar, xyzzy);

Even when written as one, it's still like two functions in one, neither of which is "preferred" in any sense. You're calling the one-argument function; the two-argument one is effectively a different function. The default argument notation just merges them into one.

If overloading were to have the behavior that you are asking for, then for consistency it would have to work in the case when the template is split up into two definitions. That wouldn't make sense because then the deduction would be pulling types from an unrelated function that is not being called! And if it was not implemented, it would mean that overloading different parameter list lengths becomes a "second class citizen" compared to "default-argumenting".

It is good if the difference between overloads and defaulting is completely hidden to the client.

share|improve this answer

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.