ScalaBuff
ScalaBuff copied to clipboard
Protobuf 2.6.0 support
For now it is impossible to generate scala classes with oneof fields.
<unknown> '}' expected but 'o' found
oneof my_value {
With proto like that:
message MyMessage {
oneof my_value {
string stringvalue = 1;
double doublevalue = 2;
}
}
just ran into the same issue. Is there any support planned for this?