clang-format当前将所有杂注移动到第一列。clang-format之前的示例:
for (int i = 0; i < 4; ++i) {
#pragma UNROLL
// ...some code...
}
字符串
clang-format之后的代码相同:
for (int i = 0; i < 4; ++i) {
#pragma UNROLL
// ...some code...
}
型
有没有一种方法可以让clang-format完全忽略杂注行而不改变源代码(即而不使源与// clang-format off
混杂)?例如使用正则表达式?
这与this question有关(我希望避免installing a third-party tool),希望通过this bug report解决。
此外,虽然clang-format off
对于包含pragma的行是有效的,但注解行 * 本身 * 将缩进到pragma * 应该缩进到的位置 *(使用clang-format 6.0.0):
for (int i = 0; i < 4; ++i) {
// clang-format off
#pragma UNROLL
// clang-format on
// ...some code...
}
型
1条答案
按热度按时间nbewdwxp1#
如果您使用的杂注很少,那么可以尝试将它们伪装成常规命令。根据compiler explorer,以下内容对编译器有正确的效果,而格式不会被clang-format破坏。
另一个好处是,您可以根据编译器使用不同的定义(如this question)。
字符串