是否可以让clang-format在结构声明中的注释之前添加换行符?

时间:2018-02-02 20:15:34

标签: c++ clang-format

考虑以下来源。

struct ThreadId {
    /// The storage where this thread's state is held.
    ThreadContext* context;
    /// Differentiates this Arachne thread from others that use the same
    /// context.
    uint32_t generation;
}

我想在包含单词Differentiates的行之前添加换行符。似乎如果我手动添加它,clang-format将不会删除它,但如果我不添加它,clang-format将不会添加它。

clang-format 5.0中是否有自动添加此换行符的选项?

0 个答案:

没有答案