Recursive import problem

2009-08-13 Thread Justin Muncaster
I have the following message structure: ===A.proto=== message A { optional B1 b1 = 1; } message B1 { optional A a = 1; } Everything works as intended when the messages are in the same file. However, in my situation there are several child messages (B2, B3, ...) which all naturally all go

Re: Recursive import problem

2009-08-13 Thread Kenton Varda
Sorry, but mutually recursive messages must be declared in a single file. It would be excessively complicated to support cyclically dependent files under the current implementation. On Thu, Aug 13, 2009 at 11:34 AM, Justin Muncaster justin.muncas...@gmail.com wrote: I have the following