c++ - Placement of const with clang-format -
clang-format
has tons of configuration options regarding whitespace , code order (order of includes). possible reorder const-qualifiers placed right of respective type?
example: declaration const int x = 0;
should formatted int const x = 0;
.
clang-format
re-order tokens in few limited circumstances, unfortunately need tool achieve this.
Comments
Post a Comment