Skip to content

Commit

Permalink
Fix warning unused-parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
fspindle committed Nov 26, 2023
1 parent e7d4499 commit 4b86491
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tutorial/image/drawingHelpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ void drawingHelpers::init(vpImage<unsigned char> &Iinput, vpImage<unsigned char>
if (p_IcannyimgFilter != nullptr) {
d_IcannyImgFilter.init(*p_IcannyimgFilter, Iinput.getWidth() + 2 * 10, Iinput.getHeight() + 10 * 2);
}
#else
(void)Iinput;
(void)IcannyVisp;
(void)p_dIx;
(void)p_dIy;
(void)p_IcannyimgFilter;
#endif
}

Expand Down

0 comments on commit 4b86491

Please sign in to comment.