1. 06 Nov, 2018 3 commits
    • Hans Wennborg's avatar
      Add wire_format_lite_inl.h include to implicit_weak_message.cc · 5d8dd6b0
      Hans Wennborg authored
      This unbreaks the Windows shared-library build of Chrome when using
      Clang versions based on r344987 or later, see https://crbug.com/901776
      
      implicit_weak_message.cc is part of protobuf_lite.dll, and it includes
      wire_format_lite.h, which includes the dllexport inline function
      WireFormatLite::WriteGroupToArray which will therefore be emitted.
      
      WriteGroupToArray in turn calls the inline function
      InternalWriteGroupToArray, however that definition is provided in the
      _inl file. To make sure the definition is available, the _inl file must
      be included.
      
      Before Clang r344987 the build worked anyway due to luck, because
      InternalWriteGroupToArray was emitted into other object files (e.g. in
      wire_format_lite.obj). After that Clang revision, those definitions
      started getting inlined, and so are longer available and cause a link
      failure for the reference from implicit_weak_message.obj.
      5d8dd6b0
    • Adam Cozzette's avatar
      Merge pull request #5314 from nilslice/patch-1 · eaf672fd
      Adam Cozzette authored
      3rd-party: include Protolock utility
      eaf672fd
    • Steve Manuel's avatar
      include Protolock utility · 6b10b916
      Steve Manuel authored
      6b10b916
  2. 05 Nov, 2018 1 commit
  3. 04 Nov, 2018 1 commit
  4. 02 Nov, 2018 1 commit
    • Thomas Van Lenten's avatar
      Let the 9.4 migrator migrate the Swift source. · eecccdc8
      Thomas Van Lenten authored
      No changes were needed, but since the Xcode projects pick up the updated
      setting, the tests require a newer Xcode that supports Swift 4.
      
      This is being done because Xcode 10 starting warning about Swift 3 support
      going away in the future, so we might as well do the updates since most
      folks shouldn't be on those really old Xcode versions any more.
      eecccdc8
  5. 01 Nov, 2018 3 commits
  6. 31 Oct, 2018 1 commit
  7. 29 Oct, 2018 3 commits
  8. 23 Oct, 2018 1 commit
  9. 22 Oct, 2018 3 commits
  10. 18 Oct, 2018 2 commits
  11. 17 Oct, 2018 1 commit
  12. 16 Oct, 2018 2 commits
  13. 15 Oct, 2018 2 commits
  14. 13 Oct, 2018 1 commit
  15. 12 Oct, 2018 2 commits
  16. 11 Oct, 2018 2 commits
  17. 10 Oct, 2018 2 commits
  18. 08 Oct, 2018 4 commits
  19. 07 Oct, 2018 1 commit
    • michaelbausor's avatar
      PHP: Add support for primitive types in setters (#5126) · 6a51c038
      michaelbausor authored
      * Add support for primitive types in setters
      
      * Update to address PR feedback
      
      * Add tests and fixes for repeated fields
      
      * Remove repeated field code, add getters
      
      * Cleanup, test getters and oneofs
      
      * Move boxing logic into separate class
      
      * Add tests for wrapper type constructor args
      
      * Update to add new setXXXValue methods
      
      * Fix tests for invalid values
      
      * Fix c extension for wrapper accessors
      
      * Fix the bug that well known types didn't call Message_construct
      
      * Address PR comments
      
      * Refactoring init message with array logic
      
      * Add include path to protoc
      
      * Add missing TSRM_LS defintion
      
      * Fix TSRM_LS
      
      * Fix dist check
      6a51c038
  20. 05 Oct, 2018 4 commits