1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-10-17 03:16:34 +00:00

Declare operator in MWState namespace

This commit is contained in:
Evil Eye 2025-06-30 16:44:15 +02:00
parent d756b02d68
commit c3a5ad4328

View file

@ -15,8 +15,6 @@ namespace MWState
std::filesystem::file_time_type mTimeStamp; std::filesystem::file_time_type mTimeStamp;
}; };
bool operator<(const Slot& left, const Slot& right);
std::string_view getFirstGameFile(const std::vector<std::string>& contentFiles); std::string_view getFirstGameFile(const std::vector<std::string>& contentFiles);
class Character class Character
@ -67,6 +65,9 @@ namespace MWState
friend bool operator<(const Character& left, const Character& right); friend bool operator<(const Character& left, const Character& right);
}; };
bool operator<(const Slot& left, const Slot& right);
bool operator<(const Character& left, const Character& right);
} }
#endif #endif