Skip to content

Commit

Permalink
Fix compile CI check
Browse files Browse the repository at this point in the history
  • Loading branch information
qhdwight committed Apr 18, 2024
1 parent 4319cd6 commit 4d20d4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/esw/arm_translator_bridge/arm_translator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ namespace mrover {

ArmTranslator::ArmTranslator(ros::NodeHandle& nh) {
for (std::string const& hwName: mArmHWNames) {
auto [_, was_inserted] = mAdjustClientsByArmHwNames.try_emplace(hwName, nh.serviceClient<AdjustMotor>(std::format("{}_adjust", hwName)));
[[maybe_unused]] auto [_, was_inserted] = mAdjustClientsByArmHwNames.try_emplace(hwName, nh.serviceClient<AdjustMotor>(std::format("{}_adjust", hwName)));
assert(was_inserted);
}

Expand Down

0 comments on commit 4d20d4e

Please sign in to comment.