We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f67b64 commit 2c1ad39Copy full SHA for 2c1ad39
planning/behavior_path_avoidance_module/src/debug.cpp
@@ -47,7 +47,7 @@ int32_t uuidToInt32(const unique_identifier_msgs::msg::UUID & uuid)
47
int32_t ret = 0;
48
49
for (size_t i = 0; i < sizeof(int32_t) / sizeof(int8_t); ++i) {
50
- ret <<= sizeof(int8_t);
+ ret <<= sizeof(int8_t) * 8;
51
ret |= uuid.uuid.at(i);
52
}
53
0 commit comments