- 20 Jul, 2017 1 commit
-
-
Adam Cozzette authored
Fixed default instance initialization for C++ lite
-
- 19 Jul, 2017 4 commits
-
-
Jie Luo authored
Make it compatible with python 3.6.1
-
Adam Cozzette authored
An ifdef condition seems to have been inverted by mistake, causing the dynamic initialization to occur for lite if and only if the _NO_STATIC_INITIALIZER macro is set. This problem manifested itself as segfaults due to uninitialized empty strings: https://github.com/google/protobuf/issues/2839 Since no one complained about initialization not happening, it would appear that we can just disable this initialization for lite unconditionally, so that is what this change does. Instead of the default instance initialization happening pre-main, it now always happens lazily when needed.
-
Brent Shaffer authored
-
Paul Yang authored
Merge 3.3.x into master
-
- 18 Jul, 2017 5 commits
-
-
Feng Xiao authored
Add note about includes to README
-
Bo Yang authored
-
Jie Luo authored
Set PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION for pure python comformance
-
Daniel Taylor authored
Ran into an issue today where a machine had the `protoc` compiler but not the include files. Took a while to sort out, and this added note to the README included in every zip should help.
-
Matt A authored
* Add php_generic_services option * Generate PHP generic services * Respect namespaces for generated PHP services * Test PHP generated services * Rename PHP generator service method doc comment function * Correct phpdoc service method case * Test namespaced PHP generic services * Always use the FQCN for PHP generic service input/output * Add generated_service_test to php test.sh * Add php service test protos to CI * Add php service files to php_EXTRA_DIST * Use Interface suffix for php generic services
-
- 17 Jul, 2017 7 commits
-
-
Jie Luo authored
-
Adam Cozzette authored
Fix map_field_inl.h for gcc 4.1
-
Adam Cozzette authored
Fix build when using -Werror=undef
-
Feng Xiao authored
Issue 3112: Object class with fully qualified name
-
Adam Cozzette authored
Expand documentation in Readme.md
-
Brent Shaffer authored
* remove pass by reference for php setters * comments out memory leak test
-
Richard Fussenegger authored
Both native_slot_merge and native_slot_merge_by_array have no return type declared. GCC implicitly uses int as return type in such cases, however, these functions are actually void.
-
- 15 Jul, 2017 1 commit
-
-
dylanetaft authored
Add some supporting documentation regarding Closure for those unfamiliar., Also substantiate details for "files in this directory" - including them all will result in a project that does not compile as some are used for test cases and aren't part of the core library.
-
- 14 Jul, 2017 1 commit
-
-
Paul Yang authored
In the generated code of previous versions, each php field is given an initial value. In c extension, it was assumed that the field order in the generated code is consistent with upb fields order, so that the correct initial value can be bound to the correct upb field. However, this may not be true. The order of fields in generated code is decided by proto compiler, while the order of upb fields is decided by the hash function used in c extension. This PR fixes the issue by reset the initial value at runtime.
-
- 13 Jul, 2017 5 commits
-
-
Brent Shaffer authored
-
Paul Yang authored
-
Paul Yang authored
-
Feng Xiao authored
Use consistent hash across NDEBUG/!NDEBUG builds.
-
Jon Skeet authored
-
- 12 Jul, 2017 2 commits
-
-
Brad Larson authored
Correct a couple places where macros were being checked when they might not exist in some cases. Fixes #3356.
-
Jean-Rémy Bancel authored
-
- 11 Jul, 2017 1 commit
-
-
Matt Hauck authored
-
- 10 Jul, 2017 2 commits
-
-
Matt Hauck authored
Rather than crashing on use (doh!) better to just declare this platform is missing a proper hash_map/hash_set implementation and use the std::map/std::set emulation. Fixes regression introduced by #1913
-
tanderson-google authored
* Remove using std::{set,map}
-
- 09 Jul, 2017 1 commit
-
-
Paul Yang authored
-
- 07 Jul, 2017 1 commit
-
-
Harvey Tuch authored
Fixes #3322.
-
- 06 Jul, 2017 1 commit
-
-
Adam Cozzette authored
[Ruby] fix floating point accuracy problem in Timestamp#to_f
-
- 05 Jul, 2017 3 commits
-
-
MaDuo authored
* add Grpc Protobuf validation
-
Thomas Van Lenten authored
Expose the initializer for unknown fields.
-
Thomas Van Lenten authored
-
- 04 Jul, 2017 1 commit
-
-
Jon Skeet authored
Note that the compatibility tests have had to cahnge as well, to cope with internal changes. (The test project has access to internals in the main project.) Fixes #3209.
-
- 03 Jul, 2017 1 commit
-
-
Jon Skeet authored
- Add a TryUnpack method which doesn't throw if the type is wrong - Make GetTypeName public for easier determination of the message type Fixes #3294.
-
- 30 Jun, 2017 1 commit
-
-
Paul Yang authored
* Add json encode/decode for php. * Fix php conformance test on 32-bit machines. * Fix conformance test for c extension. * Fix comments
-
- 29 Jun, 2017 2 commits
-
-
Thomas Van Lenten authored
Add initialized as a reserved keyword as that's the actual property name
-
Sergio Campama authored
-