aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
...
| | * | Clang warning cleanup for unused parameter.Gravatar drivehappy2017-09-14
| | | |
* | | | Integrated internal changes from GoogleGravatar Adam Cozzette2017-09-14
| | | |
* | | | Clang warning cleanup for unused parameter.Gravatar drivehappy2017-09-13
| | | |
| | * | Revert "Fix js conformance tests. (#3604)" (#3633)Gravatar Paul Yang2017-09-13
| | | | | | | | | | | | This reverts commit 2bd55a9fbcd2815b3332bf309bc20f59eef0b36b.
| * | | Rename ClassNamePrefix to ConstantNamePrefixGravatar Bo Yang2017-09-13
| | | |
| | * | Fix js conformance tests. (#3604)Gravatar Paul Yang2017-09-12
| | | | | | | | | | | | | | | | | | | | | | | | * Fix js conformance tests. * Remove old incorrect compatibility tests
| * | | Exclude valid constant name from reserved name.Gravatar Bo Yang2017-09-12
| | | |
* | | | Exclude addressbook.proto from C# boostrap test.Gravatar Feng Xiao2017-09-11
| | | | | | | | | | | | | | | | | | | | This addressbook.proto now belongs to its own bazel pacakge and can't be accessed in bazel protobuf_test target.
| * | | Add prefix to php reserved keywords.Gravatar Bo Yang2017-09-08
| |/ /
| | * Add @Deprecated annotation support for proto file.Gravatar Jisi Liu2017-08-31
| | |
| * | change the field number of php_generic_service to fix the conflict with (#3576)Gravatar Paul Yang2017-08-30
| |/ | | | | internal descriptor.proto
* | Merge pull request #3503 from gburgessiv/masterGravatar Jisi Liu2017-08-24
|\ \ | | | | | | Work around a bug in clang's static analyzer
| | * Make distcheck aware of test proto files.Gravatar Jisi Liu2017-08-23
| | |
* | | Merge pull request #3548 from google/3.4.xGravatar Jisi Liu2017-08-22
|\ \ \ | | |/ | |/| Merge fixes from 3.4.x into master
| * | Disable death tests on windowsGravatar Jisi Liu2017-08-22
| | | | | | | | | | | | Also remove cord related code
| * | Merge pull request #3539 from drivehappy/3.4.x_clang_cleanup_1Gravatar Jisi Liu2017-08-22
| |\ \ | | | | | | | | Merge pull request #3535 from drivehappy/clang_warn_cleanup
| | | * Work around a bug in clang's static analyzerGravatar George Burgess IV2017-08-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Due to https://bugs.llvm.org/show_bug.cgi?id=34198, clang's static analyzer emits diagnostics about leaking `container`. Doing this assignment in two steps works around this, and shouldn't cause these issues.
| * | | Merge pull request #3494 from drivehappy/clang_warning_macroGravatar Jisi Liu2017-08-21
| | | | | | | | | | | | Fixing -Wexpansion-to-defined Clang warning
| | * | Merge pull request #3535 from drivehappy/clang_warn_cleanupGravatar Jisi Liu2017-08-21
| |/ / | | | | | | Fixing unused parameter warnings under Clang.
* | | Merge pull request #3535 from drivehappy/clang_warn_cleanupGravatar Jisi Liu2017-08-21
|\ \ \ | | | | | | | | Fixing unused parameter warnings under Clang.
| | * | Fix compile errorsGravatar Jisi Liu2017-08-21
| | | |
| | * | Remove C++11 features in io_win32.ccGravatar Jisi Liu2017-08-21
| | | | | | | | | | | | | | | | | | | | - Use scoped_array instead of unique_ptr. - Do not use string::front() and string::back()
| * | | Fixing unused parameter warnings under Clang.Gravatar drivehappy2017-08-21
| | |/ | |/|
* | | Merge remote-tracking branch 'origin/3.4.x' into mergemasterGravatar Jisi Liu2017-08-18
|\ \ \ | |/ / |/| / | |/
* | Fixing warning under Clang 6.x (-Wexpansion-to-defined) where the macro ↵Gravatar drivehappy2017-08-15
| | | | | | | | expansion producing 'defined' was warning on undefined behavior.
| * Fix cmath/math.h include with non C++11 libstdc++Gravatar Jisi Liu2017-08-15
| |
| * Merge pull request #3485 from pherl/mingwGravatar Jisi Liu2017-08-11
| |\ | | | | | | Fix build on MinGW32
| | * Fix commentsGravatar Jisi Liu2017-08-11
| | |
| * | Make compilers without ref-qualifier support happy.Gravatar Jisi Liu2017-08-11
| | |
| | * Add malloc castGravatar Jisi Liu2017-08-11
| | |
| | * implement remove strdup usage and implement our ownGravatar Jisi Liu2017-08-11
| | | | | | | | | | | | | | | strdup is not part C or C++ standard but POXIS function. Several compilers failed to compile strdup or generate warnings.
| | * Adding missing imports for strdupGravatar Jisi Liu2017-08-11
| | |
| | * Fix mkdirGravatar Jisi Liu2017-08-11
| | |
| | * Make win32_io only for MSVCGravatar Jisi Liu2017-08-11
| | | | | | | | | | | | | | | This excludes cygwin and mingw from using the self implemented functions.
| | * Fix the declaration order in ming32Gravatar Jisi Liu2017-08-11
| | |
| | * Fixing io_win32 for MinGW32Gravatar Jisi Liu2017-08-11
| |/
* | Clean up typedefs for Atomic32/Atomic64Gravatar Brad Larson2017-08-10
| | | | | | | | | | | | | | | | | | | | | | | | 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.
| * Make no warning test stricter.Gravatar Jisi Liu2017-08-10
| | | | | | | | | | - Now it includes -Wextra except for unused-parameter. - Removed gtest dependency
| * Make code free of missing-field-initializers warningsGravatar Jisi Liu2017-08-09
| |
| * Merge branch 'master' into 3.4.xGravatar Bo Yang2017-08-05
| |\ | |/ |/|
| * Fix invalid offsetof warning.Gravatar Jisi Liu2017-08-03
| | | | | | | | Use composition instead of inheritance for oneof default.
| * Add destructors for default instances to the shutdown code.Gravatar Gerben Stavenga2017-08-02
| | | | | | | | Verified test succeed under draconian heap checker
| * Adding the missing headerGravatar Jisi Liu2017-08-01
| |
| * Export functions in io_win32.h in win DLL buildGravatar Jisi Liu2017-08-01
| | | | | | | | | | Previous code duplicates io_win32.cc in sources of all the libraries that include io_win32.h header.
* | Add a objc_class_prefix to test_messages_proto3.proto.Gravatar Thomas Van Lenten2017-07-26
| | | | | | | | | | | | | | | | | | | | 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.
* | Merge pull request #3410 from adam-26/1745Gravatar Adam Cozzette2017-07-25
|\ \ | | | | | | Fix issue #1745 - javascript allow dot in filename
| | * Fix makefile.amGravatar Jisi Liu2017-07-25
| | |
| | * Fix build filesGravatar Jisi Liu2017-07-25
| | |
| | * Merge remote-tracking branch 'origin/master' into mergeGravatar Jisi Liu2017-07-25
| | |\ | |_|/ |/| |
| | * Merge from masterGravatar Jisi Liu2017-07-25
| | |