diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-04-02 22:01:43 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-04-02 22:01:43 +0200 |
commit | a958e1646531f6f6a688eb4db513831d7a8cdcdd (patch) | |
tree | 20a716b328234d1ef6270600b6db260d1d2e2f49 /src/GsrInfo.cpp | |
parent | c8eadbc7c47f4cecde1588fab3900e9c1e0c7867 (diff) |
README
Diffstat (limited to 'src/GsrInfo.cpp')
-rw-r--r-- | src/GsrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GsrInfo.cpp b/src/GsrInfo.cpp index 5f8e00d..5af6397 100644 --- a/src/GsrInfo.cpp +++ b/src/GsrInfo.cpp @@ -11,7 +11,7 @@ namespace gsr { } bool GsrVersion::operator>=(const GsrVersion &other) const { - return major >= other.major || (major == other.major && minor >= other.minor) || (major == other.major && minor == other.minor && patch >= other.patch); + return major > other.major || (major == other.major && minor > other.minor) || (major == other.major && minor == other.minor && patch >= other.patch); } bool GsrVersion::operator<(const GsrVersion &other) const { |