Re: [protobuf] could anyone give me the source code of protobuffer 2.0.3

2017-08-09 Thread Ilia Mirkin
Not easy to find anymore it seems... looks like all the old releases have been lost in the move to github. That's unfortunate. http://ftp.slackware.com/pub/gsb/gsb64-2.28_slackware64-13.1/source/c/protobuf/protobuf-2.0.3.tar.bz2 http://www.java2s.com/Code/Jar/p/Downloadprotobufjava203jar.htm No

[protobuf] could anyone give me the source code of protobuffer 2.0.3

2017-08-09 Thread minlujun
My project is using this old version, but the source code of protobuffer 2.0.3 is missing. Anyone can help me ? -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: [protobuf] Re: Compiler error with GCC targeting ARM - Atomic32 vs AtomicWord

2017-08-09 Thread 'Feng Xiao' via Protocol Buffers
Hi Brad, can you send your patch as a pull request? It's easier to review the diff there. On Wed, Aug 9, 2017 at 8:27 AM, Brad Larson wrote: > > > On Monday, August 7, 2017 at 1:13:46 PM UTC-5, Brad Larson wrote: >> >> Hello, I'm getting a compiler error when using GCC to

[protobuf] Re: Compiler error with GCC targeting ARM - Atomic32 vs AtomicWord

2017-08-09 Thread Brad Larson
On Monday, August 7, 2017 at 1:13:46 PM UTC-5, Brad Larson wrote: > > Hello, I'm getting a compiler error when using GCC to target ARM > platforms. I've patched this locally, but would like to upstream my patch > and am not sure on the best generally-acceptable solution. > >

[protobuf] Protobuf member by member copy from java to protobuf class and vice versa

2017-08-09 Thread Jay Sharma
I have a question regarding "*Protocol buffer generated java class*". Is there is any way to customise it, so that I do not have to copy member by member for conversion from java object to protobuf object and vice-versa. *For Instance:* I have java class: class Dummy{ int id; } I have