Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mockingbirdnest/abseil-cpp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 402ae18c6e65
Choose a base ref
...
head repository: mockingbirdnest/abseil-cpp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1264ab041227
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jun 25, 2020

  1. std::result_of is deprecated

    pleroy committed Jun 25, 2020
    Copy the full SHA
    ba070d4 View commit details
  2. Copy the full SHA
    1264ab0 View commit details
Showing with 0 additions and 3 deletions.
  1. +0 −3 absl/meta/type_traits.h
3 changes: 0 additions & 3 deletions absl/meta/type_traits.h
Original file line number Diff line number Diff line change
@@ -409,9 +409,6 @@ using common_type_t = typename std::common_type<T...>::type;
template <typename T>
using underlying_type_t = typename std::underlying_type<T>::type;

template <typename T>
using result_of_t = typename std::result_of<T>::type;

namespace type_traits_internal {
template <typename Key, typename = size_t>
struct IsHashable : std::false_type {};