After switching to the clang engine I notice that my document formatting is slightly broken.
Formatting now removes spaces after ‘if’ statements, so
if (condition) { }
is changed to
if(condition) { }
I find this fairly annoying and can’t find where to change this. The corresponding VS formatting setting is of course set to my liking; I have checked the option
Spacing for control blocks
* Insert space between keyword and opening parenthesis in control flow statements
Perhaps of special interest is that this formatting does not apply to while or switch staments, only if’s seem affected.