1. 21 Mar, 2024 2 commits
  2. 20 Mar, 2024 3 commits
  3. 19 Mar, 2024 5 commits
  4. 18 Mar, 2024 7 commits
  5. 15 Mar, 2024 4 commits
  6. 14 Mar, 2024 2 commits
  7. 13 Mar, 2024 5 commits
  8. 12 Mar, 2024 8 commits
  9. 11 Mar, 2024 3 commits
  10. 07 Mar, 2024 1 commit
    • Work around an implicit conversion signedness compiler warning · e9682564
      Addition and subtraction operators std::array::iterator are defined only for
      ptrdiff_t, which is signed, instead of size_t, which is unsigned. Therefore,
      adding the index variable to ar.begin() will trigger -Wsign-conversion if
      std::array::iterator is not a raw pointer because the index variable will be
      implicitly converted from size_t (an unsigned type) to ptrdiff_t (a signed
      type). To fix this, we explicitly static_cast index to a ptrdiff_t.
      PiperOrigin-RevId: 613662928
      Change-Id: I5e06c2261d7b8f167fae7bb6acece076257f8579
      Abseil Team committed