mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-26 19:26:59 +03:00
Revise Utils::Version comparison operators
This commit is contained in:
parent
5ba6a5fca1
commit
4d1d5d6b20
1 changed files with 11 additions and 9 deletions
|
@ -133,19 +133,15 @@ namespace Utils
|
|||
return (*this != ThisType {});
|
||||
}
|
||||
|
||||
constexpr bool operator==(const ThisType &other) const
|
||||
// TODO: remove manually defined operators and use compiler generated `operator<=>()` in C++20
|
||||
friend bool operator==(const ThisType &left, const ThisType &right)
|
||||
{
|
||||
return (m_components == other.m_components);
|
||||
return (left.m_components == right.m_components);
|
||||
}
|
||||
|
||||
constexpr bool operator<(const ThisType &other) const
|
||||
friend bool operator<(const ThisType &left, const ThisType &right)
|
||||
{
|
||||
return (m_components < other.m_components);
|
||||
}
|
||||
|
||||
constexpr bool operator>(const ThisType &other) const
|
||||
{
|
||||
return (m_components > other.m_components);
|
||||
return (left.m_components < right.m_components);
|
||||
}
|
||||
|
||||
template <typename StringClassWithSplitMethod>
|
||||
|
@ -198,6 +194,12 @@ namespace Utils
|
|||
return !(left == right);
|
||||
}
|
||||
|
||||
template <typename T, std::size_t N, std::size_t Mandatory>
|
||||
constexpr bool operator>(const Version<T, N, Mandatory> &left, const Version<T, N, Mandatory> &right)
|
||||
{
|
||||
return (right < left);
|
||||
}
|
||||
|
||||
template <typename T, std::size_t N, std::size_t Mandatory>
|
||||
constexpr bool operator<=(const Version<T, N, Mandatory> &left, const Version<T, N, Mandatory> &right)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue