Closed FinalFortune closed 3 years ago
The compiler doesn't seem to generate the code if the items used from the Include are in a different namespace.
__ e.g.
A.fbs:
Include "B.fbs" namespace my.namespace.stuff; table Bar { MyFoo:Foo }
B.fbs
namespace my.namespace.otherstuff; table Foo { }
Compiler unable to resolve Foo in A.fbs
You need to use "full name" of the type.
Include "B.fbs"; namespace my.namespace.stuff; table Bar { MyFoo:my.namespace.otherstuff.Foo; }
The compiler doesn't seem to generate the code if the items used from the Include are in a different namespace.
__ e.g.
A.fbs:
B.fbs
Compiler unable to resolve Foo in A.fbs