|
39 | 39 | #include "gmock/gmock-generated-function-mockers.h" // NOLINT
|
40 | 40 | #include "gmock/internal/gmock-pp.h"
|
41 | 41 |
|
| 42 | +namespace testing { |
| 43 | +namespace internal { |
| 44 | +template <typename T> |
| 45 | +using identity_t = T; |
| 46 | +} // namespace internal |
| 47 | +} // namespace testing |
| 48 | + |
42 | 49 | #define MOCK_METHOD(...) \
|
43 | 50 | GMOCK_PP_VARIADIC_CALL(GMOCK_INTERNAL_MOCK_METHOD_ARG_, __VA_ARGS__)
|
44 | 51 |
|
|
207 | 214 |
|
208 | 215 | #define GMOCK_INTERNAL_IS_CALLTYPE_HELPER_Calltype
|
209 | 216 |
|
210 |
| -#define GMOCK_INTERNAL_SIGNATURE(_Ret, _Args) \ |
211 |
| - GMOCK_PP_IF(GMOCK_PP_IS_BEGIN_PARENS(_Ret), GMOCK_PP_REMOVE_PARENS, \ |
212 |
| - GMOCK_PP_IDENTITY) \ |
213 |
| - (_Ret)(GMOCK_PP_FOR_EACH(GMOCK_INTERNAL_GET_TYPE, _, _Args)) |
| 217 | +// Note: The use of `identity_t` here allows _Ret to represent return types that |
| 218 | +// would normally need to be specified in a different way. For example, a method |
| 219 | +// returning a function pointer must be written as |
| 220 | +// |
| 221 | +// fn_ptr_return_t (*method(method_args_t...))(fn_ptr_args_t...) |
| 222 | +// |
| 223 | +// But we only support placing the return type at the beginning. To handle this, |
| 224 | +// we wrap all calls in identity_t, so that a declaration will be expanded to |
| 225 | +// |
| 226 | +// identity_t<fn_ptr_return_t (*)(fn_ptr_args_t...)> method(method_args_t...) |
| 227 | +// |
| 228 | +// This allows us to work around the syntactic oddities of function/method |
| 229 | +// types. |
| 230 | +#define GMOCK_INTERNAL_SIGNATURE(_Ret, _Args) \ |
| 231 | + ::testing::internal::identity_t<GMOCK_PP_IF(GMOCK_PP_IS_BEGIN_PARENS(_Ret), \ |
| 232 | + GMOCK_PP_REMOVE_PARENS, \ |
| 233 | + GMOCK_PP_IDENTITY)(_Ret)>( \ |
| 234 | + GMOCK_PP_FOR_EACH(GMOCK_INTERNAL_GET_TYPE, _, _Args)) |
214 | 235 |
|
215 | 236 | #define GMOCK_INTERNAL_GET_TYPE(_i, _, _elem) \
|
216 | 237 | GMOCK_PP_COMMA_IF(_i) \
|
|
0 commit comments