| 1799 | return m_Content == ContentType::LinkToUnknown; |
| 1800 | } |
| 1801 | bool IGFD::FileType::isSymLink() const { |
| 1802 | return m_Symlink; |
| 1803 | } |
| 1804 | // Comparisons only care about the content type, ignoring whether it's a symlink or not. |
| 1805 | bool IGFD::FileType::operator==(const FileType& rhs) const { |
| 1806 | return m_Content == rhs.m_Content; |