clang-format has many configuration options regarding spaces, as well as some of the code orders (order includes). Is it possible to reorder const constructors so that they are located to the right of the corresponding type?
Example. Declaration const int x = 0; must be formatted to int const x = 0; .
c ++ clang-format
pschill
source share