1. 21 Dec, 2023 1 commit
  2. 20 Dec, 2023 6 commits
  3. 19 Dec, 2023 5 commits
  4. 18 Dec, 2023 4 commits
  5. 15 Dec, 2023 2 commits
  6. 14 Dec, 2023 1 commit
  7. 13 Dec, 2023 2 commits
  8. 12 Dec, 2023 2 commits
  9. 11 Dec, 2023 3 commits
  10. 07 Dec, 2023 3 commits
  11. 06 Dec, 2023 5 commits
  12. 05 Dec, 2023 5 commits
  13. 04 Dec, 2023 1 commit
    • Remove `absl::weak_equality` and `absl::strong_equality`. · a39d71a8
      The corresponding `std` types were removed before C++20 was finalized:
      https://wg21.link/P1959R0.
      
      They are unused. The language mechanisms and recommendations changed since they
      were originally proposed. In particular:
      
      * An explicitly defaulted `operator==` is defined in terms of memberwise
        `operator==` rather than sibling `operator<=>`.
      
      * An `operator!=` can be implicitly added to an overload set in terms of
        `operator==` rather than `operator<=>`.
      
      * A class which has equality but not ordering defined should provide
        `operator==` rather than `operator<=>`.
      
      PiperOrigin-RevId: 587834267
      Change-Id: I2c2513c13f3485b9edc6a345dca4a577d8e65167
      Marcin Kowalczyk committed