Is this legal c++0x syntax?

class A
{
public:
    void some_function( const std::set<std::string> &options = {} );
    // note that this is legal, which binds the const reference to a temporary:
    void some_function( const std::set<std::string> &options = std::set<std::string>() );
}

Because if so, I just found a bug in GCC 4.6.

The error I get is:

error: expected primary-expression before '{' token

which is ... logical ... if it was illegal.

UPDATE: As @Kerrek has illustrated, this bleeds into plain C++03, with aggregates and the old brace initialization syntax for them. Why is this not possible? Is it forbidden in the Standard? Or are compilers at fault? Or is this an oversight? I don't see any serious problems in allowing this as an alternative to explicitely calling the constructor.

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

It is valid in C++0x, but it was a very late addition to the working paper that Bjarne put through. So it's not surprising that GCC doesn't support brace default arguments yet.

link|improve this answer
Very interesting. But since I just today reported a crash-bug in GCC regarding initialization that's still in 4.7, and since an upgrade from 4.6.0 to 4.6.1 fixed another, unrelated initialization bug, I'm happy to believe that GCC simply isn't getting it right yet. – Kerrek SB Jul 7 '11 at 19:55
1  
Bam, that's why I love SO.com for this kind of thing. – rubenvb Jul 7 '11 at 19:58
feedback

What do you get? Modulo adding a semicolon and renaming the second function, the first line gives me a compiler error on GCC 4.6.1, as it should, and the second line doesn't. You can't initialize a reference on {}.

#include <set>
#include <string>

class A
{
public:
  void some_function( const std::set<std::string> &options = {} );
  void some_function_2( const std::set<std::string> &options = std::set<std::string>() );
};

7:62: error: expected primary-expression before ‘{’ token

Same situation with aggregates:

class B
{
public:
  void f(const int (&x)[2] = {1, 2}); // fail, no implicit conversion
  void g(const int (&x)[2] = (int[2]){1, 2});
};
link|improve this answer
And why would it be illegal? Shouldn't the {} initialize an empty set<string>, just like an explicit call to the constructor? – rubenvb Jul 7 '11 at 19:23
I suppose {} isn't implicitly convertible to a set of strings -- which is a good thing! – Kerrek SB Jul 7 '11 at 19:25
Ah, but that cout is no initialization! Which could throw a nice error message in the likes of no match for std::basic_ostream<char>::operator<<( <initialize_list> ). In all other initialization/assignment/"function call" cases it is, so why not here? – rubenvb Jul 7 '11 at 19:27
2  
You don't realize that in C++0x, {} is supposed to be a short-hand for whatever_type()? Initializing a const reference to {} surely is accepted by the compiler: ideone.com/CCGNm, apparently just not in a default argument. – UncleBens Jul 7 '11 at 19:47
2  
If the statement const std::string &foo = {}; is legal as a statement, then it should be legal as a default parameter as well. The question is what the standard says about this. – Nicol Bolas Jul 7 '11 at 19:50
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

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