summaryrefslogtreecommitdiffstats
path: root/googlemock/include/gmock/internal
diff options
context:
space:
mode:
authorKrystian Kuzniarek <krystian.kuzniarek@gmail.com>2019-08-13 20:30:12 (GMT)
committerKrystian Kuzniarek <krystian.kuzniarek@gmail.com>2019-08-14 12:00:44 (GMT)
commitec49fbca4cb84651fb2eae5d093d0342f356cf29 (patch)
tree24bdf499c55ba728098614c143232c8f5d863be0 /googlemock/include/gmock/internal
parent90a443f9c2437ca8a682a1ac625eba64e1d74a8a (diff)
downloadgoogletest-ec49fbca4cb84651fb2eae5d093d0342f356cf29.zip
googletest-ec49fbca4cb84651fb2eae5d093d0342f356cf29.tar.gz
googletest-ec49fbca4cb84651fb2eae5d093d0342f356cf29.tar.bz2
remove custom implementations of std::is_samerefs/pull/2399/head
Diffstat (limited to 'googlemock/include/gmock/internal')
-rw-r--r--googlemock/include/gmock/internal/gmock-internal-utils.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/googlemock/include/gmock/internal/gmock-internal-utils.h b/googlemock/include/gmock/internal/gmock-internal-utils.h
index ee00479..7bfa54c 100644
--- a/googlemock/include/gmock/internal/gmock-internal-utils.h
+++ b/googlemock/include/gmock/internal/gmock-internal-utils.h
@@ -359,10 +359,6 @@ GTEST_API_ WithoutMatchers GetWithoutMatchers();
template <typename T> struct is_reference : public false_type {};
template <typename T> struct is_reference<T&> : public true_type {};
-// type_equals<T1, T2>::value is non-zero if T1 and T2 are the same type.
-template <typename T1, typename T2> struct type_equals : public false_type {};
-template <typename T> struct type_equals<T, T> : public true_type {};
-
// remove_reference<T>::type removes the reference from type T, if any.
template <typename T> struct remove_reference { typedef T type; }; // NOLINT
template <typename T> struct remove_reference<T&> { typedef T type; }; // NOLINT