Skip to content

Commit

Permalink
chore: do not use deprecated header in test or elsewhere (#675)
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel authored May 18, 2022
1 parent 3090f86 commit 1be8c87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example/convolution.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

// Work can be done row by row and column by column, as in this example,
// using the functions convolve_rows and convolve_cols (or their _fixed counterpart)
// but the header boost/gil/extension/numeric/convolve.hpp also offers the function convolve_1d which combines the two.
// but the header boost/gil/image_processing/convolve.hpp also offers the function convolve_1d which combines the two.

// See also:
// convolve2d.cpp - Convolution with 2d kernels
Expand Down
2 changes: 1 addition & 1 deletion include/boost/gil/extension/numeric/kernel.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@

#include <boost/config/header_deprecated.hpp>

BOOST_HEADER_DEPRECATED("<boost/gil/image_processing/convolve.hpp>")
BOOST_HEADER_DEPRECATED("<boost/gil/image_processing/kernel.hpp>")

#endif
2 changes: 1 addition & 1 deletion test/core/channel/channel_numeric_operations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// http://www.boost.org/LICENSE_1_0.txt
//
#include <boost/gil.hpp>
#include <boost/gil/extension/numeric/channel_numeric_operations.hpp>
#include <boost/gil/channel_numeric_operations.hpp>

#include <boost/core/lightweight_test.hpp>

Expand Down

0 comments on commit 1be8c87

Please sign in to comment.