We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
protoc --version
.proto
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; }
I have several build time error (in Xcode 10)
The text was updated successfully, but these errors were encountered:
Ok it was due to data that conflict with the Data type of swift. I changed it to datas, and it is working fine
Sorry, something went wrong.
No branches or pull requests
Version of protoc (
protoc --version
)3.6.1
Version of ProtocolBuffers.framework
4.0.6
.proto
file to reproduceDescription
I have several build time error (in Xcode 10)
The text was updated successfully, but these errors were encountered: