- 18 Oct, 2019 2 commits
-
-
Daniel Johansen authored
-
Jan Tattermusch authored
c# feature(RepeatedField): Capacity property to resize the internal array
-
- 16 Oct, 2019 1 commit
-
-
Joshua Haberman authored
Remove unused argument to avoid UB
-
- 15 Oct, 2019 3 commits
-
-
debugx authored
-
Juraj Lutter authored
This fixes build on, at least, NetBSD 8.1 with gcc 5.5 and SmartOS with gcc 7.
-
Rafi Kamal authored
Java: Update to Guava 28.1-android
-
- 14 Oct, 2019 2 commits
-
-
Rafi Kamal authored
Fixed bug in Ruby DSL when no names are defined in a file.
-
Rafi Kamal authored
Ported names fix for Ruby to the release branch.
-
- 12 Oct, 2019 1 commit
-
-
Alan Wu authored
`OneOfDescriptor_each` is registered as a Ruby method which takes zero parameters, which means it should take one argument. When Ruby invokes `OneOfDescriptor_each`, it calls it with one parameter only, which is one less than what `OneOfDescriptor_each` takes before this commit. Calling a function with the wrong number of argument is technically undefined behavior. See also: §6.5.2.2, N1256
-
- 11 Oct, 2019 2 commits
-
-
Joshua Haberman authored
-
Joshua Haberman authored
-
- 10 Oct, 2019 2 commits
-
-
Rafi Kamal authored
Merge 3.10.x with master and increment the version number
-
Paul Yang authored
* Fix conformance test Default value of string/message map is not encoded * Fix zts build
-
- 08 Oct, 2019 1 commit
-
-
Elliotte Rusty Harold authored
-
- 07 Oct, 2019 1 commit
-
-
Rafi Kamal authored
-
- 04 Oct, 2019 2 commits
-
-
Ricky Pai authored
-
Benjamin Peterson authored
-
- 03 Oct, 2019 5 commits
-
-
Rafi Kamal authored
-
Rafi Kamal authored
-
Rafi Kamal authored
-
Rafi Kamal authored
Update CHANGES.txt with changes since 3.10.0-RC1
-
Rafi Kamal authored
-
- 30 Sep, 2019 7 commits
-
-
Paul Yang authored
* Initialize well known type values Also fixes #6667 * Revert unwanted change
-
Paul Yang authored
* Initialize well known type values Also fixes #6667 * Revert unwanted change
-
Adam Cozzette authored
-
EFanZh authored
This reverts commit 911e3040fa597e6a82351375d9eb416a6d3fae3a.
-
EFanZh authored
-
EFanZh authored
Currently, the generated header file might cause warnings if user specifies `-Wconversion` compiler option. This commit should be able to fix it.
-
Nikhil Pothuru authored
* Update README.md Fixed spelling error * Update README.md
-
- 27 Sep, 2019 3 commits
-
-
Andrei-Florin BENCSIK authored
When browsing around the strutil files I found a function that was never referenced inside the code base "void StripString(string* s, const char* remove, - char replacewith);" The name was kind of misleading as well and it seems like it's a carbon copy of "void ReplaceCharacters(string* s, const char* remove, char replacewith);" (even the parameter names are the same, the code is the same..) Is it intentional? Maybe for compatibility reasons? If so, let's make it deprecated and use the ReplaceCharacters method inside or the other way around. Also, noticed there were no tests for "StripString" or "Replace". Added some for both and planning on maybe making it more C++ish (?) in another commit.
-
Changming Sun authored
-
Sigurd Meldgaard authored
-
- 26 Sep, 2019 3 commits
-
-
Paul Yang authored
* Add document for php development * Fix comments
-
Rafi Kamal authored
Update Java Readme to 3.9.2
-
Elliotte Rusty Harold authored
3.9.2 is on the Githib releases page.
-
- 25 Sep, 2019 2 commits
-
-
Paul Yang authored
-
Joshua Haberman authored
The new function name also better reflects the semantics of the function. Like timegm(), this function always converts to/from UTC, not local time.
-
- 20 Sep, 2019 3 commits
-
-
Christian Maurer authored
-
Paul Yang authored
Pull the ObjC fixes from #6679 to the 3.10.x branch
-
dmaclach authored
The OSReadLittleInt64 function as defined by Apple reduces down to: `return *(volatile uint64_t *)((uintptr_t)base + byteOffset);` which means we are type-punning using a cast. On ARMv7 and other aligned architectures this can cause crashes. Minimal example: https://gist.github.com/dmaclach/b10b0a71ae614d304c067cb9bd264336 Fixes #6679
-