Open
Description
A couple items of note.
First, with clang-format 20, using SpacesInCStyleCastParentheses: true
produces:
static_cast<type>( value );
(size_t)value;
Where SpacesInCStyleCastParentheses: false
produces:
static_cast<type>(value);
( size_t )value;
Is that backwards?
Second, would we be able to get an option to achieve the following:
static_cast<type>( value );
(size_t)value;
Something like the following would make sense:
SpacesInCStyleCastParentheses: false
and SpacesInStaticCastParentheses: true
.