aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google
Commit message (Collapse)AuthorAge
* Test Shutdown can be called multiple times.Gravatar Jisi Liu2017-09-21
|
* Integrated internal changes from GoogleGravatar Adam Cozzette2017-09-14
|
* Clang warning cleanup for unused parameter.Gravatar drivehappy2017-09-13
|
* 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.
* Merge pull request #3503 from gburgessiv/masterGravatar Jisi Liu2017-08-24
|\ | | | | Work around a bug in clang's static analyzer
* \ 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 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
| | * Merge remote-tracking branch 'origin/master' into mergeGravatar Jisi Liu2017-07-25
| | |\ | |_|/ |/| |
| | * Merge from masterGravatar Jisi Liu2017-07-25
| | |
* | | Merge pull request #3407 from bklarson/masterGravatar Adam Cozzette2017-07-25
|\ \ \ | | | | | | | | Add declaration for AddDescriptorsImpl()
| | | * Merge remote-tracking branch 'origin/3.4.x' into vbGravatar Jisi Liu2017-07-24
| | | |\
| | | | * Omit the zip test if tools are not availableGravatar Jisi Liu2017-07-24
| | | | |
| | | * | Update required version on pre-generated filesGravatar Jisi Liu2017-07-24
| | | | |
| | | * | Update pre generated filesGravatar Jisi Liu2017-07-24
| | | | |
| | | * | Update version number for 3.4.0Gravatar Jisi Liu2017-07-24
| | | |/
| * | | Put AddDescriptorsImpl() in anonymous namespaceGravatar Brad Larson2017-07-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | AddDescriptorsImpl() is a private static implementation detail, and needs to be declared but won't be used from outside the source file. Place it inside an anonymous namespace to fix a previous build error that would result in more restrictive build enviornments that use -Werror=missing-declarations or similar compiler flags.
* | | | Merge pull request #3281 from BSBandme/ConformanceTestYilunChongGravatar Yilun Chong2017-07-24
|\ \ \ \ | | | | | | | | | | Proto2 test message support to conformance test
| | | * | Fix quotation marksGravatar Adam2017-07-24
| | | | |
| | | * | Fix issue #1745 - javascript allow dot in filenameGravatar Adam2017-07-24
| |_|/ / |/| | |
* | | | Merge pull request #2969 from laszlocsomor/masterGravatar Feng Xiao2017-07-24
|\ \ \ \ | |_|/ / |/| | | Windows: support long paths in open/mkdir/access