gmock-internal-utils.h | 341 // type_equals<T1, T2>::value is non-zero iff T1 and T2 are the same type. 342 template <typename T1, typename T2> struct type_equals : public false_type {}; struct in namespace:testing::internal 343 template <typename T> struct type_equals<T, T> : public true_type {}; struct in namespace:testing::internal
|