Skip to content

Commit

Permalink
fix(tensorrt_yolox): fix unusedVariable warnings (#7672)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryuta Kambe <[email protected]>
  • Loading branch information
veqcc authored Jun 25, 2024
1 parent b91cfa1 commit 758b425
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion perception/tensorrt_yolox/src/tensorrt_yolox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ std::vector<tensorrt_yolox::Colormap> get_seg_colormap(const std::string & filen
}
std::string colormapString = color_list[i];
tensorrt_yolox::Colormap cmap;
std::vector<int> rgb;
size_t npos = colormapString.find_first_of(',');
assert(npos != std::string::npos);
std::string substr = colormapString.substr(0, npos);
Expand Down

0 comments on commit 758b425

Please sign in to comment.