https://bugs.llvm.org/show_bug.cgi?id=48535
using SpaceAfterCStyleCast: true
size_t idx = (size_t) a; size_t idx = (size_t) (a - 1);
is formatted as:
size_t idx = (size_t) a; size_t idx = (size_t)(a - 1);
This revision aims to improve that by improving the function which tries to identify a CastRParen
What's the policy towards unrelated changes?