Skip to content

Commit

Permalink
Gimbal: fix operator==
Browse files Browse the repository at this point in the history
  • Loading branch information
julianoes committed Jul 29, 2024
1 parent ca7a3b6 commit cee8f6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Gimbal/GimbalController.h
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class GimbalController : public QObject
}
}

bool operator=(const GimbalPairId& other) const {
bool operator==(const GimbalPairId& other) const {
return (managerCompid == other.managerCompid) && (deviceId == other.deviceId);
}
};
Expand Down

0 comments on commit cee8f6a

Please sign in to comment.