lang格式和换行符的AlignConsecutiveDeclarations

时间:2019-01-15 07:23:42

标签: clang clang-format

如果将clang格式的AlignConsecutiveDeclarations设置为true,它将按换行符分隔的声明作为不同的组来处理。是否可以使其作为一组来处理?

例如,

    virtual bool         IsComplete() override;
    virtual Section::Ptr TryGetNewSubsection(const std::string& a_row) override;

    Section::Ptr               m_totalSection;
    DateSectionCheckers*       m_checkers       = nullptr;
    TvaInfo*                   m_lastTva = nullptr;

我想得到

    virtual bool               IsComplete() override;
    virtual Section::Ptr       TryGetNewSubsection(const std::string& a_row) override;

    Section::Ptr               m_totalSection;
    DateSectionCheckers*       m_checkers       = nullptr;
    TvaInfo*                   m_lastTva = nullptr;

0 个答案:

没有答案