如果将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;