aboutsummaryrefslogtreecommitdiff
path: root/src/GsrInfo.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-04-02 22:01:43 +0200
committerdec05eba <dec05eba@protonmail.com>2025-04-02 22:01:43 +0200
commita958e1646531f6f6a688eb4db513831d7a8cdcdd (patch)
tree20a716b328234d1ef6270600b6db260d1d2e2f49 /src/GsrInfo.cpp
parentc8eadbc7c47f4cecde1588fab3900e9c1e0c7867 (diff)
README
Diffstat (limited to 'src/GsrInfo.cpp')
-rw-r--r--src/GsrInfo.cpp2
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 {