Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6a17c79

Browse files
kobayu858esteve
authored andcommittedAug 13, 2024
fix(autoware_livox_tag_filter): fix unusedStructMember (#8395)
* fix:unusedStructMember Signed-off-by: kobayu858 <yutaro.kobayashi@tier4.jp> * fix:unusedStructMember Signed-off-by: kobayu858 <yutaro.kobayashi@tier4.jp> * fix:clang format Signed-off-by: kobayu858 <yutaro.kobayashi@tier4.jp> * fix:unusedStructMember Signed-off-by: kobayu858 <yutaro.kobayashi@tier4.jp> --------- Signed-off-by: kobayu858 <yutaro.kobayashi@tier4.jp>
1 parent b911e9a commit 6a17c79

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎sensing/livox/autoware_livox_tag_filter/src/livox_tag_filter_node.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222

2323
struct EIGEN_ALIGN16 LivoxPoint
2424
{
25-
float x;
26-
float y;
27-
float z;
28-
float intensity;
25+
float x; // cppcheck-suppress unusedStructMember
26+
float y; // cppcheck-suppress unusedStructMember
27+
float z; // cppcheck-suppress unusedStructMember
28+
float intensity; // cppcheck-suppress unusedStructMember
2929
std::uint8_t tag;
3030
std::uint8_t line;
3131
};

0 commit comments

Comments
 (0)
Please sign in to comment.