Why is it not possible to supply a default value that is defined in the parameter list for a struct? That is, why does this work
struct C {int i;};
C cc = {0};
foo(C c=cc) {}
but not
foo(C c={0}) {}
Note, I've noticed that the same holds true for arrays.
foo, both compiles on my gcc. – ipc Dec 5 '12 at 20:25g++ -pedantic -std=c++11without error. My gcc version is4.7.2. Of course, that doesn't necessary mean that it is conforming. – ipc Dec 5 '12 at 20:30