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

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -