标签: c++ code-formatting clang-format
在clang-format中,我可以使用选项SpaceBeforeParens = Always在括号前添加一个空格。但我只想在像这样的非空括号之前使用它们:
clang-format
SpaceBeforeParens = Always
int foo(){ bar (foo()); if (baz (1, 2)) boom(); }
这可能吗?