-
Notifications
You must be signed in to change notification settings - Fork 137
Open
Description
Version of protoc (protoc --version
)
3.6.1
Version of ProtocolBuffers.framework
4.0.6
.proto
file to reproduce
syntax = "proto3";
message accl {
double x = 1;
double y = 2;
double z = 3;
}
message gyro {
double x = 1;
double y = 2;
double z = 3;
}
message magn {
double x = 1;
double y = 2;
double z = 3;
}
message raw_data_item {
oneof data {
accl accl = 1;
gyro gyro =2;
magn magn = 3;
}
uint32 timestamp = 5;
}
Description
I have several build time error (in Xcode 10)
Metadata
Metadata
Assignees
Labels
No labels