Always having to obtain a new instance of a repeated nested message from it's parent is really cumbersome. I fail to see the logic behind it being that singular message fields have set_allocated.
--Chris
You received this message because you are subscribed to the Google Groups "Protocol Buffers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+u...@googlegroups.com.
To post to this group, send email to prot...@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.
On Thu, Oct 2, 2014 at 8:58 PM, <ch...@ochsnet.com> wrote:Always having to obtain a new instance of a repeated nested message from it's parent is really cumbersome. I fail to see the logic behind it being that singular message fields have set_allocated.We can add an add_allocated() method for repeated message fields but that's not necessary because you can do:foo->mutable_repeated_message()->AddAllocated(bar);