This commit is contained in:
2025-08-09 13:25:52 +03:00
parent b99263a014
commit 22097610f9
5 changed files with 47 additions and 17 deletions

View File

@@ -117,13 +117,11 @@ public:
MccMountTelemetryAstromTransform& operator=(MccMountTelemetryAstromTransform&& other)
{
if (this == &other) {
return;
if (this != &other) {
_pec = other._pec;
_astromEngine = other._astromEngine;
}
_pec = other._pec;
_astromEngine = other._astromEngine;
return *this;
}
@@ -134,13 +132,11 @@ public:
MccMountTelemetryAstromTransform& operator=(const MccMountTelemetryAstromTransform& other)
{
if (this == &other) {
return;
if (this != &other) {
_pec = other._pec;
_astromEngine = other._astromEngine;
}
_pec = other._pec;
_astromEngine = other._astromEngine;
return *this;
}