Comparisons only care about the content type, ignoring whether it's a symlink or not.
| 1741 | } |
| 1742 | // Comparisons only care about the content type, ignoring whether it's a symlink or not. |
| 1743 | bool IGFD::FileType::operator==(const FileType& rhs) const { |
| 1744 | return m_Content == rhs.m_Content; |
| 1745 | } |
| 1746 | bool IGFD::FileType::operator!=(const FileType& rhs) const { |
| 1747 | return m_Content != rhs.m_Content; |
| 1748 | } |
nothing calls this directly
no outgoing calls
no test coverage detected