You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By searching I found at minimum one issue (#136597) asking for a solution on this. It would really be cool to have an option for a mixed pointer and reference alignment for various cases (mainly return types, template arguments and anything else):
// Return type is aligned-left// Argument is aligned-rightconstchar* my_function(const std::string &my_argument);
// Template argument is aligned-leftextern std::vector<constchar*> list_of_strings;
// Variable is aligned-rightexternconstchar *my_cool_string;
We work on a large-scale project with this specific code style and mixed pointer/reference alignment is the only thing that practically stops us from auto-formatting the entire source tree