From 1be8c87c1047733aeeb3c29585ebafb057753356 Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Wed, 18 May 2022 23:25:36 +0200 Subject: [PATCH] chore: do not use deprecated header in test or elsewhere (#675) --- example/convolution.cpp | 2 +- include/boost/gil/extension/numeric/kernel.hpp | 2 +- test/core/channel/channel_numeric_operations.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/example/convolution.cpp b/example/convolution.cpp index 52c27b5d0f..b7e1b6b2e3 100644 --- a/example/convolution.cpp +++ b/example/convolution.cpp @@ -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 diff --git a/include/boost/gil/extension/numeric/kernel.hpp b/include/boost/gil/extension/numeric/kernel.hpp index 103df047af..1f0299baae 100644 --- a/include/boost/gil/extension/numeric/kernel.hpp +++ b/include/boost/gil/extension/numeric/kernel.hpp @@ -13,6 +13,6 @@ #include -BOOST_HEADER_DEPRECATED("") +BOOST_HEADER_DEPRECATED("") #endif diff --git a/test/core/channel/channel_numeric_operations.cpp b/test/core/channel/channel_numeric_operations.cpp index 9b4d4fccdc..ff20b35b92 100644 --- a/test/core/channel/channel_numeric_operations.cpp +++ b/test/core/channel/channel_numeric_operations.cpp @@ -7,7 +7,7 @@ // http://www.boost.org/LICENSE_1_0.txt // #include -#include +#include #include