Skip to content

Commit

Permalink
fix(avoidance): ghost debug markers due to duplicated marker id (auto…
Browse files Browse the repository at this point in the history
…warefoundation#6330)

fix(avoidance): fix duplicated marker id

Signed-off-by: satoshi-ota <[email protected]>
  • Loading branch information
satoshi-ota authored Feb 7, 2024
1 parent 7cb77dd commit c859790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion planning/behavior_path_avoidance_module/src/debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ int32_t uuidToInt32(const unique_identifier_msgs::msg::UUID & uuid)
int32_t ret = 0;

for (size_t i = 0; i < sizeof(int32_t) / sizeof(int8_t); ++i) {
ret <<= sizeof(int8_t);
ret <<= sizeof(int8_t) * 8;
ret |= uuid.uuid.at(i);
}

Expand Down

0 comments on commit c859790

Please sign in to comment.