用于对齐operator + =,operator- =等的Clang格式设置

时间:2019-07-14 15:39:40

标签: c++ operators clang-format

AlignConsecutiveAssignments: true中设置.clang-format会对齐=,即

 int a   = 0;
 int bcd = 0;
 int ef  = 0;

但是是否有类似的设置也可以对齐其他操作符,例如+=-=*=/=等,即

 a    = 1;
 bcd += 2;
 ef  -= 3;

0 个答案:

没有答案