On 11/07/2011 05:38 PM, Gabriel Dos Reis wrote:
struct C
{
  int i;
  C() = default;
};

so the defaulted constructor does not initialize C::i?

No, it doesn't. value-initialization of a C will initialize it, but not default-initialization.

Jason

Reply via email to