1. 13 Dec, 2019 3 commits
  2. 06 Dec, 2019 2 commits
  3. 05 Dec, 2019 3 commits
  4. 02 Dec, 2019 3 commits
  5. 27 Nov, 2019 4 commits
  6. 26 Nov, 2019 8 commits
  7. 25 Nov, 2019 2 commits
  8. 22 Nov, 2019 12 commits
  9. 21 Nov, 2019 1 commit
  10. 20 Nov, 2019 2 commits
    • Gennadiy Civil's avatar
      Merge pull request #2569 from bgianfo:master · 200ff599
      Gennadiy Civil authored
      PiperOrigin-RevId: 281321427
      200ff599
    • Abseil Team's avatar
      Googletest export · 4bf46623
      Abseil Team authored
      Add a breadcrumb about nullopt comparison near the Optional() matcher.
      
      Also add a note about how otherwise-spurious 'Eq()' may be needed in some cases. Without this, something like Field(&MyStruct::optional_field_without_equals_equals, absl::nullopt) doesn't work - it converts the nullopt to an optional<> of the non-equalable type, and fails to select the operator==(optional<>, nullopt_t) overload. The Eq() lets the type persist later into the match.
      
      PiperOrigin-RevId: 281305519
      4bf46623