void foo( std::string&v, bool*p, size_t&x, char* c, float&f, MyClass*m )
{
}
with .\astyle --align-reference=type --align-pointer=type --mode=c testfile.cpp becomes
void foo( std::string&v, bool*p, size_t& x, char* c, float& f, MyClass*m )
{
}
since 3.6.2 up to 3.6.14
3.6.1 was the last version producing
void foo( std::string& v, bool* p, size_t& x, char* c, float& f, MyClass* m )
{
}
I searched, but apperently I failed: #599 and #601 are releated
git bisect with the other platform says f1424af25b32b9413815ac77fa667d100c2d70b2 is the first faulty one and the message refers to issue 35 (on the othe platform)