Probably due to the changes in #572 and #573 and might be related to #578. While the changes in #572 and #573 fixed most of the issues I had, now I face these issues:
if( ( bla ) && ( blub ) )
// becomes
if(( bla ) && ( blub ) )
QMutexLocker lockedScope( &lock_ );
// becomes
QMutexLocker lockedScope(&lock_ );
So something seems to eat a whitespace.
I am using (apart from other settings):
--style=allman
--pad-oper
--pad-paren-in
--align-pointer=type
--align-reference=type
but especially the last 2 options can be changed to name as well yielding the same results.
Sorry: I did forget to add, that I tested that using 3.6.6 as well.
Hi, the next release will have a new option
preserve-wsto prevent this.Bugfix version 3.6.7 was released.