考虑以下来源。
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
中是否有自动添加此换行符的选项?