| 3837 | virtual ~SectionNode() = default; |
| 3838 | |
| 3839 | bool operator == (SectionNode const& other) const { |
| 3840 | return stats.sectionInfo.lineInfo == other.stats.sectionInfo.lineInfo; |
| 3841 | } |
| 3842 | bool operator == (std::shared_ptr<SectionNode> const& other) const { |
| 3843 | return operator==(*other); |
| 3844 | } |
nothing calls this directly
no outgoing calls
no test coverage detected