Hey guys I'm having a really weird issue with parsing a certain sub message 
that has the same index as it's parent.


Here are the two messages

message Nine {    <----- parent message
required int32 test = 5;  <----- This parses fine
optional Details details = 9;  <----- won't parse throws error if required

message Details {
required fixed64 test1 = 10;
required int32 test2 = 12;}
}

Here is the .toString() output of the parsed protobuf

one {
  two {
    four {
      nine { <---------- this the parent message
        test: 1  
        9 { <---------- this is the message that won't parse
          10: 0x37d0e1c7c8eb012b
          11: 1
          12: 5110
        }
        13: 1
      }


Thanks for the help guys


-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to