如何以叮当格式强制东常量?

How to force east const in clang format?

本文关键字:常量 格式 叮当      更新时间:2023-10-16

是否有一个叮当格式的标志将"const west"更改为"east const",以便以下内容:

void fun(const std::string &s);

将被重新格式化为:

void fun(std::string const &s);

从 Clang-Format 14 开始,有QualifierAlignment.将以下行添加到.clang 格式的配置文件中:

QualifierAlignment: Right

AFAIK 它尚未实现,但他们的错误跟踪器中有一个功能请求。