Skip to content

Commit

Permalink
?????
Browse files Browse the repository at this point in the history
  • Loading branch information
mcm001 committed Sep 30, 2023
1 parent 6523add commit 0ae2b49
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Packet& operator>>(Packet& packet, MultiTargetPnpResult& target) {

target.fiducialIdsUsed.clear();
for (size_t i = 0; i < target.fiducialIdsUsed.capacity(); i++) {
int8_t id;
int8_t id = 0;
packet >> id;

if (id > -128) {
Expand Down Expand Up @@ -93,7 +93,7 @@ Packet& operator>>(Packet& packet, frc::Transform3d& transform) {
return packet;
}

Packet& operator<<(Packet& packet, const PNPResults& result) {
Packet& operator<<(Packet& packet, PNPResults const & result) {
packet << result.isValid << result.best << result.alt
<< result.bestReprojectionErr << result.altReprojectionErr
<< result.ambiguity;
Expand Down

0 comments on commit 0ae2b49

Please sign in to comment.