1. 22 Aug, 2024 1 commit
  2. 21 Aug, 2024 1 commit
  3. 20 Aug, 2024 1 commit
  4. 19 Aug, 2024 1 commit
  5. 16 Aug, 2024 1 commit
    • PR #1728: Workaround broken compilation against NDK r25 · 8bb5dc43
      Imported from GitHub PR https://github.com/abseil/abseil-cpp/pull/1728
      
      When targeting Android NDK r25 (reached EOL now, but still in some use) one gets the following error:
      ```
      $(SOURCE_ROOT)/contrib/restricted/abseil-cpp/absl/time/time.h:1762:37: error: invalid operands to binary expression ('std::strong_ordering' and 'const std::strong_ordering')
        if (auto c = lhs_hi <=> rhs_hi; c != std::strong_ordering::equal) {
      ```
      
      The error indicates the lack of `operator<=>` between two `std::strong_ordering` items.
      I believe that this should be controlled by `__cpp_lib_three_way_comparison` (_Three-way comparison (library support)_, see [this article](https://en.cppreference.com/w/cpp/feature_test)), not by `__cpp_impl_three_way_comparison` (which stands for _Three-way comparison (compiler support)_).
      
      Fixes #1725.
      The problem was introduced in a2766235.
      
      Merge 32e1d3d889859ef8a32bf3460349814a2203444c into 69c46839
      
      Merging this change closes #1728
      
      COPYBARA_INTEGRATE_REVIEW=https://github.com/abseil/abseil-cpp/pull/1728 from georgthegreat:fix-time 32e1d3d889859ef8a32bf3460349814a2203444c
      PiperOrigin-RevId: 663723253
      Change-Id: I29f7d2b562cc5ad8e11cd46b538ba69acee0f314
      Yuriy Chernyshov committed
  6. 15 Aug, 2024 1 commit
  7. 14 Aug, 2024 1 commit
  8. 13 Aug, 2024 2 commits
  9. 12 Aug, 2024 1 commit
  10. 08 Aug, 2024 1 commit
  11. 07 Aug, 2024 2 commits
  12. 06 Aug, 2024 4 commits
  13. 05 Aug, 2024 2 commits
  14. 01 Aug, 2024 2 commits
  15. 30 Jul, 2024 3 commits
  16. 29 Jul, 2024 2 commits
  17. 26 Jul, 2024 2 commits
  18. 25 Jul, 2024 5 commits
  19. 24 Jul, 2024 1 commit
  20. 23 Jul, 2024 1 commit
  21. 22 Jul, 2024 2 commits
  22. 18 Jul, 2024 3 commits