Skip to content

Commit

Permalink
automated style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sid-parikh authored Apr 29, 2024
1 parent 92aaa9e commit 37c2810
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion soccer/src/soccer/radio/network_radio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ void NetworkRadio::receive_alive_robots(const boost::system::error_code& error,
return;
}

uint16_t alive = (((uint16_t) alive_robots_buffer_[1]) << 8) | (alive_robots_buffer_[0]);
uint16_t alive = (((uint16_t)alive_robots_buffer_[1]) << 8) | (alive_robots_buffer_[0]);
SPDLOG_INFO("Alive: {}", alive);

// uint16_t alive = (alive_robots_buffer_[0] << 8) | (alive_robots_buffer_[0]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ std::optional<RobotIntent> RobotFactoryPosition::derived_get_task([
current_play_state_);
}



// Update our state
process_play_state();

Expand Down

0 comments on commit 37c2810

Please sign in to comment.