- 17 Aug, 2017 4 commits
- 15 Aug, 2017 2 commits
-
-
Jisi Liu authored
Fixing -Wexpansion-to-defined Clang warning
-
drivehappy authored
Fixing warning under Clang 6.x (-Wexpansion-to-defined) where the macro expansion producing 'defined' was warning on undefined behavior.
-
- 11 Aug, 2017 1 commit
-
-
Jon Skeet authored
Previously we only rejected the tag if the tag itself was 0, i.e. field=0, type=varint. The type doesn't matter: field 0 is always invalid. This removes the last of the C# conformance failures.
-
- 10 Aug, 2017 2 commits
-
-
Feng Xiao authored
Clean up typedefs for Atomic32/Atomic64
-
Brad Larson authored
The typedefs for Atomic32 and Atomic64 were sometimes causing Atomic32 to be an int32 rather than an intptr_t on 32-bit platforms. On some of these platforms (ARM/CortexM building with GCC 6 in one case) int32 is a long int, while intptr_t is an int, which causes a compiler error even though long int and int are both 4 bytes. Having Atomic32 always be intptr_t on 32-bit platforms and Atomic64 always be intptr_t on 64-bit platforms should resolve any of these types of errors.
-
- 08 Aug, 2017 3 commits
-
-
Feng Xiao authored
PROTBUF-3394 Potential SIGBUS with UnsafeUtil.getLong
-
Thomas Van Lenten authored
Xcode 8.3.x cleanups and use on travis
-
alanbur authored
-
- 07 Aug, 2017 5 commits
-
-
Jie Luo authored
Add python 2.6 test back for cpp implementation.
-
Feng Xiao authored
Make .bzl files compatible with future versions of Bazel
-
Thomas Van Lenten authored
-
Thomas Van Lenten authored
- Xcode 8.3.3 bumped the simulators to 10.3.1, so 10.3 fails. Just use the "latest" naming instead to avoid issues. - Also switch to just testing an old 32bit build and new 64bit build as there isn't any code in protobuf that should care about form facts. (Looks like the iPad Pro simulator names aren't always constantly, on some developer machines they are "iPad Pro (9.7 inch)" while on others they are "iPad Pro (9.7-inch)"; so just avoid using them.)
-
Vladimir Moskva authored
-
- 04 Aug, 2017 7 commits
-
-
Paul Yang authored
-
Paul Yang authored
* Fix the bug in php c extension that setting one field can change another field's value. The reason is that previously, in c extension, it was assumed that the order that fields were declared in php is the same as the order of fields in upb. This is not true. Now, for every field in upb, we will look up the actual property that is corresponding to the upb field. * Cleanup pull request * Fix indentation * Port to php5 * Port with php7.1 * Port to zts
-
michaelbausor authored
* Add descriptors test * Update descriptors tests * Add public descriptors * Add test_desriptors.proto to test script * Update composer files * Remove references to GPBType, update tests to be compatible with c * Update for c extension compatibility * Remove nested enums for descriptor, update tests * Strip leading '.' from descriptor name * Update tests with test for getClass, fix OneofDescriptor * Add new files to Makefile.am
-
Jie Luo authored
1, Some tests in reflection_test PY26 raise TypeError but other versions raise ValueError for convert negative long to unsigned 2, Change compare exception type to compare exception str for testDuplicateExtensionNumber. Original code raise 'Double registration of Extensions' is not an instance of (<type 'exceptions.AssertionError'>, <type 'exceptions.ValueError'>) for PY26 cpp implementation t
-
Feng Xiao authored
Update third party addons with ProfaneDB
-
Giorgio Azzinnaro authored
I added my project ProfaneDB, it is a database for Protocol Buffers objects. Written in C++, it uses gRPC as an interface for other languages. It is still work in progress, but I'd love to get some feedback on it while I progress!
-
Jie Luo authored
-
- 03 Aug, 2017 2 commits
- 02 Aug, 2017 2 commits
-
-
Ryan Gordon authored
-
Paul Yang authored
-
- 01 Aug, 2017 2 commits
-
-
Tony Wong authored
divideInt64ToInt32 is called statically from protobuf/php/src/Google/Protobuf/Internal/CodedOutputStream.php (the only reference) This causes fatal error in PHP 7.1 (32-bit only because 64-bit doesn't use this function)
-
Brent Shaffer authored
-
- 31 Jul, 2017 2 commits
- 26 Jul, 2017 7 commits
-
-
Thomas Van Lenten authored
Update the comment on the message_type to cover what it should be.
-
Thomas Van Lenten authored
-
Thomas Van Lenten authored
Objc proto2 conformance test support
-
Thomas Van Lenten authored
- Better error message for unknown messageType. - Remove unneeded if.
-
Thomas Van Lenten authored
-
Thomas Van Lenten authored
-
Thomas Van Lenten authored
Both test_messages_proto3.proto & test_messages_proto2.proto define message ForeignMessage {...} and enum ForeignEnum {...} but since objc doesn't use the proto package in the naming, these end up conflicting. Adding the objc_class_prefix option to the proto3 file ensure the generated objc types are all unique.
-
- 25 Jul, 2017 1 commit
-
-
Adam Cozzette authored
Fix issue #1745 - javascript allow dot in filename
-