| 3856 | BySectionInfo( SectionInfo const& other ) : m_other( other ) {} |
| 3857 | BySectionInfo( BySectionInfo const& other ) : m_other( other.m_other ) {} |
| 3858 | bool operator() (std::shared_ptr<SectionNode> const& node) const { |
| 3859 | return ((node->stats.sectionInfo.name == m_other.name) && |
| 3860 | (node->stats.sectionInfo.lineInfo == m_other.lineInfo)); |
| 3861 | } |
| 3862 | void operator=(BySectionInfo const&) = delete; |
| 3863 | |
| 3864 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected