gpt4 book ai didi

c++ - 获取 clang 格式以将多行函数调用的右括号放在单独的行上?

转载 作者:可可西里 更新时间:2023-11-01 17:58:10 28 4
gpt4 key购买 nike

我一直在使用 clang 格式来帮助保持我的代码整洁。对于多行函数调用,有什么方法可以让 clang 将右括号放在它自己的行上?

示例:

它现在在做什么:

increment_and_call_on_match(
clique_colors,
0,
max_clique_color,
[&](int clique_color) {
comms.emplace_back(context.split_by_color(clique_color));
},
[&](int) { context.split_by_color(); });

我想要的:

increment_and_call_on_match(
clique_colors,
0,
max_clique_color,
[&](int clique_color) {
comms.emplace_back(context.split_by_color(clique_color));
},
[&](int) { context.split_by_color(); }
); //Closing paren on new line

最佳答案

新选项 AlignAfterOpenBracket: BlockIndent 已于 2022 年 1 月 17 日在批准的代码审查中添加 https://reviews.llvm.org/D109557 , 在 LLVM 14.0.0-rc1 中或以后。

(我也想要这个,因为我们有数千行代码使用这种风格,而支持这种风格的 clang 格式会让我在 Visual Studio 中采用 clang 格式 - https://developercommunity.visualstudio.com/content/problem/232465/clang-format-messes-with-closing-parentheses-in-fu.html)

关于c++ - 获取 clang 格式以将多行函数调用的右括号放在单独的行上?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50689027/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com