- 12 Jan, 2017 2 commits
-
-
cgrushko authored
This allows easy use of Bazel's java_proto_library native rule.
-
Adam Cozzette authored
Class deprecation support
-
- 11 Jan, 2017 2 commits
-
-
Andrew Spiering authored
-
-
- 10 Jan, 2017 3 commits
-
-
Adam Cozzette authored
Fixed "make distcheck" for the Autotools build
-
Jon Skeet authored
Fixes #2088. We now have separate tests for netcoreapp and net45 to test the two branches here. (netstandard10 doesn't have MemoryStream.GetBuffer) Although most of this library doesn't have any async functionality, this feels like a natural place to locally add it.
-
Jon Skeet authored
-
- 09 Jan, 2017 1 commit
-
-
Adam Cozzette authored
To make the test pass I needed to fix out-of-tree builds and update EXTRA_DIST and CLEANFILES.
-
- 08 Jan, 2017 1 commit
-
-
Sufir authored
* fix int64 decoding * fix int64 decoding + tests
-
- 07 Jan, 2017 2 commits
-
-
Marcus Longmuir authored
* Fix generation of extending nested messages in JavaScript * Added missing test8.proto to build
-
Joshua Haberman authored
* A few more cases for binary conformance tests. * over-encoded varints (encoded in more bytes than are necessary). * truncated varints (>32 bits for 32-bit types). * Fixed Python decoding bug with 32-bit varints. * Fixed 1L -> 1LL for 32-bit platforms.
-
- 05 Jan, 2017 4 commits
-
-
Adam Cozzette authored
Fixed cross compilations with the Autotools build
-
Thomas Van Lenten authored
Minor fix for autocreated object repeated fields and maps.
-
Thomas Van Lenten authored
- If setting/clearing a repeated field/map that was objects, check the class before checking the autocreator. - Just to be paranoid, don’t mutate within copy/mutableCopy for the autocreated classes to ensure there is less chance of issues if someone does something really crazy threading wise. - Some more tests for the internal AutocreatedArray/AutocreatedDictionary classes to ensure things are working as expected. - Add Xcode 8.2 to the full_mac_build.sh supported list.
-
Adam Cozzette authored
Add link to Elm proto plugin
-
- 04 Jan, 2017 3 commits
-
-
Adam Cozzette authored
Fix include in auto-generated well_known_types_embed.cc
-
Adam Cozzette authored
Removed arena_nc.cc and arena_nc_test.py
-
Adam Cozzette authored
This test is undocumented and it looks like it has probably never worked. Let's just remove it to tidy things up. This fixes issue #2515.
-
- 03 Jan, 2017 1 commit
-
-
Adam Cozzette authored
Pull request #2517 caused cross compilations to start failing, because the js_embed binary was being built to run on the target platform instead of on the build machine. This change updates the Autotools build to use the AX_PROG_CXX_FOR_BUILD macro to find a suitable compiler for the build machine and always use that when building js_embed.
-
- 28 Dec, 2016 2 commits
-
-
NicklasWallgren authored
-
Tiziano Santoro authored
-
- 27 Dec, 2016 3 commits
-
-
Feng Xiao authored
Fix warning in compiler/js/embed.cc
-
Julien Brianceau authored
Restore include style fix (e3da722b) that has been trampled by auto-generation of well_known_types_embed.cc
-
Julien Brianceau authored
embed.cc: In function ‘std::string CEscape(const string&)’: embed.cc:51:32: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i = 0; i < str.size(); ++i) { ^
-
- 22 Dec, 2016 4 commits
-
-
Adam Cozzette authored
Init index_in_metadata_ without condition
-
Feng Xiao authored
Eliminate redundant methods in C++ generated code for lite protos
-
Camillo Lugaresi authored
-
Camillo Lugaresi authored
-
- 21 Dec, 2016 3 commits
-
-
Julien Brianceau authored
Chromium MemorySanitizer (MSan) reports use-of-uninitialized-value of index_in_metadata_ attribute from EnumGenerator class. Fix these warnings by initializing these attributes without condition.
-
Andrew Spiering authored
Added the support for class level deprecation which will in turn also deprecate any fields that are currently using that type
-
Adam Cozzette authored
Added Bazel genrule for generating well_known_types_embed.cc
-
- 20 Dec, 2016 5 commits
-
-
Adam Cozzette authored
-
Adam Cozzette authored
-
Adam Cozzette authored
In pull request #2517 I made this change for the CMake and autotools builds but forgot to do it for the Bazel build.
-
Adam Cozzette authored
Add rvalue setters for non-arena strings on C++11.
-
Adam Cozzette authored
Remove spurious NULL checks in ArenaStringPtr::CreateInstance.
-
- 19 Dec, 2016 3 commits
-
-
Adam Cozzette authored
Auto-generate well_known_types_embed.cc
-
Adam Cozzette authored
The check target did not depend on the test_plugin binary, so this would cause "make check" to fail at times because of the absence of test_plugin. This change adds a dependency on test_plugin so that it will always get built before the tests are executed.
-
Adam Cozzette authored
Until now this file was just checked into the repo, but actually it should be generated from any.js, struct.js, and timestamp.js. This change updates the build system to make this happen. To make it work I also had to remove some C++11 features from embed.cc.
-
- 16 Dec, 2016 1 commit
-
-
Chris Kennelly authored
-