[protobuf] once.h:126:34: error: no matching function for call to 'Acquire_Load()'

2019-01-23 Thread joe . parness
Does anyone know the cause of this error? I am using protobuf version 3.5.0 with simple .proto file. -- This email and its contents are confidential. If you are not the intended recipient, please do not disclose or use the information within this email or its attachments. If you have

[protobuf] Typo on page: Protocol Buffer Basics: C#

2019-01-23 Thread Jagmohan Singh Jaura
Hi fellow developers, I found a typo on one of the pages and thought I should notify someone, so I'm guessing someone here should be able to fix this! Page: https://developers.google.com/protocol-buffers/docs/csharptutorial [image: typo in documentation.PNG]

Re: [protobuf] which protobuf type should be used for byte arrays

2019-01-23 Thread Marc Gravell
"bytes" is correct. The problem here is usually "treating binary data as nul-terminated strings", which is almost certainly something *outside* of the protobuf code, but in your code. Basically, you can't ever treat protobuf data as nul-terminated strings. On Wed, 23 Jan 2019, 00:52 What is the