2
0
mirror of https://github.com/boostorg/gil.git synced 2026-02-15 01:02:09 +00:00

Clean up several warnings about unreferenced formal parameters

Add comment to premultiply.hpp:
- FIXME: Is c input paramater not used intentionally?
This commit is contained in:
Mateusz Łoskot
2018-10-29 15:26:53 +01:00
parent 5fd0f7878c
commit 28df5bc482
2 changed files with 13 additions and 3 deletions

View File

@@ -12,6 +12,7 @@
#include <boost/gil/extension/dynamic_image/dynamic_image_all.hpp>
#include <boost/core/ignore_unused.hpp>
#include <boost/crc.hpp>
#include <boost/lambda/bind.hpp>
#include <boost/lambda/lambda.hpp>
@@ -170,7 +171,11 @@ private:
template <typename Img> void basic_test(const string& prefix);
template <typename View> void view_transformations_test(const View& img_view, const string& prefix);
template <typename View> void homogeneous_view_transformations_test(const View& img_view, const string& prefix, mpl::true_);
template <typename View> void homogeneous_view_transformations_test(const View& img_view, const string& prefix, mpl::false_) {}
template <typename View> void homogeneous_view_transformations_test(const View& img_view, const string& prefix, mpl::false_)
{
boost::ignore_unused(img_view);
boost::ignore_unused(prefix);
}
template <typename View> void histogram_test(const View& img_view, const string& prefix);
void virtual_view_test();
void packed_image_test();