Commit 3e813465 by Joshua Cannon

Removing extraneous parenthesis

parent f8961b99
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
// Calls CAT(_Macro, NARG(__VA_ARGS__))(__VA_ARGS__) // Calls CAT(_Macro, NARG(__VA_ARGS__))(__VA_ARGS__)
#define GMOCK_PP_VARIADIC_CALL(_Macro, ...) \ #define GMOCK_PP_VARIADIC_CALL(_Macro, ...) \
GMOCK_PP_INTERNAL_VARIADIC_CALL( \ GMOCK_PP_INTERNAL_VARIADIC_CALL( \
_Macro, GMOCK_PP_NARG(__VA_ARGS__), (__VA_ARGS__)) _Macro, GMOCK_PP_NARG(__VA_ARGS__), __VA_ARGS__)
// If the arguments after expansion have no tokens, evaluates to `1`. Otherwise // If the arguments after expansion have no tokens, evaluates to `1`. Otherwise
// evaluates to `0`. // evaluates to `0`.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment