We are updating our clang-format from 5.0 to 10.0 (yes, I know that this is a big jump :-))
The file .clang-format is kept constant.
With the 5.0 version we get a format like this
virtual Composite *copy_composite_tree(Composite *parent // parent of copied tree
) const;
With the 10.0 version this changes to
virtual Composite *copy_composite_tree(Composite *parent // parent of copied tree
) const;
Is there an option to keep the 5.0 formatting style?