Copy link
@ibuclaw

ibuclaw Aug 12, 2015

Member

The one I'm pushing for in my changes are:

MACRO_ACCESSOR (obj);  // space between macro and parenthesis.
function_call(obj);    // no space between functions and parenthesis.
((Cast *) obj)->foo;   // space between closing cast parenthesis and object

The only change has been to function calls, where there was a mix between:

some_call (foo)->bar()->baz (42);

Which was just bad...