| 1737 | return m_Content == ContentType::LinkToUnknown; |
| 1738 | } |
| 1739 | bool IGFD::FileType::isSymLink() const { |
| 1740 | return m_Symlink; |
| 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; |