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