MCPcopy Create free account
hub / github.com/aiekick/ImGuiFileDialog / operator==

Method operator==

ImGuiFileDialog.cpp:1743–1745  ·  view source on GitHub ↗

Comparisons only care about the content type, ignoring whether it's a symlink or not.

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected