From da76d01b984fcfd02cf7b368b6081c988937f336 Mon Sep 17 00:00:00 2001 From: Krystian Kuzniarek Date: Wed, 14 Aug 2019 13:33:13 +0200 Subject: remove a custom implementation of std::is_reference --- googlemock/include/gmock/internal/gmock-internal-utils.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'googlemock/include/gmock/internal/gmock-internal-utils.h') diff --git a/googlemock/include/gmock/internal/gmock-internal-utils.h b/googlemock/include/gmock/internal/gmock-internal-utils.h index ee004790..b7d2cf24 100644 --- a/googlemock/include/gmock/internal/gmock-internal-utils.h +++ b/googlemock/include/gmock/internal/gmock-internal-utils.h @@ -355,10 +355,6 @@ GTEST_API_ WithoutMatchers GetWithoutMatchers(); // Type traits. -// is_reference::value is non-zero if T is a reference type. -template struct is_reference : public false_type {}; -template struct is_reference : public true_type {}; - // type_equals::value is non-zero if T1 and T2 are the same type. template struct type_equals : public false_type {}; template struct type_equals : public true_type {}; -- cgit v1.2.3