thakis added a comment.

Will do, thanks! In "If the implicit default constructor initializes all 
subobjects, no initializer should be required", is "initializes all subobjects 
meant recursively? I.e. is this ok according to that language?

  `
  struct Inner {
    Inner() = default;
    int i;  // not initialized, but Inner has a default ctor
  };
  
  struct S {
    Inner inner;
  };
  
  const S s;
  `


http://reviews.llvm.org/D16552



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to