Skip to content

Commit 717a6b5

Browse files
committed
ビルドエラー修正
1 parent 742532f commit 717a6b5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

session/crane_planner_plugins/include/crane_planner_plugins/our_kickoff_planner.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ class OurKickOffPlanner : public PlannerBase
2525
{
2626
private:
2727
std::shared_ptr<skills::KickoffAttack> kickoff_attack;
28+
2829
std::shared_ptr<RobotCommandWrapper> attacker_command;
2930

3031
std::shared_ptr<skills::KickoffSupport> kickoff_support;
31-
std::shared_ptr<RobotCommandWrapper> supporter_command;
3232

33-
// std::shared_ptr<ConsaiVisualizerWrapper> visualizer;
33+
std::shared_ptr<RobotCommandWrapper> supporter_command;
3434

3535
public:
3636
COMPOSITION_PUBLIC explicit OurKickOffPlanner(

utility/crane_msg_wrappers/include/crane_msg_wrappers/world_model_wrapper.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ struct TeamInfo
9898
{
9999
std::vector<std::shared_ptr<RobotInfo>> available_robots;
100100
for (auto robot : robots) {
101-
if (robot->available && robot_id != my_id) {
101+
if (robot->available && robot->id != my_id) {
102102
available_robots.emplace_back(robot);
103103
}
104104
}
@@ -109,7 +109,7 @@ struct TeamInfo
109109
{
110110
std::vector<uint8_t> available_robot_ids;
111111
for (auto robot : robots) {
112-
if (robot->available && robot_id != my_id) {
112+
if (robot->available && robot->id != my_id) {
113113
available_robot_ids.emplace_back(robot->id);
114114
}
115115
}

0 commit comments

Comments
 (0)