| 1750 | return m_Content < rhs.m_Content; |
| 1751 | } |
| 1752 | bool IGFD::FileType::operator>(const FileType& rhs) const { |
| 1753 | return m_Content > rhs.m_Content; |
| 1754 | } |
| 1755 | |
| 1756 | std::shared_ptr<IGFD::FileInfos> IGFD::FileInfos::create() { |
| 1757 | return std::make_shared<IGFD::FileInfos>(); |
nothing calls this directly
no outgoing calls
no test coverage detected