2
0
mirror of https://github.com/boostorg/gil.git synced 2026-02-20 02:42:11 +00:00

Merge pull request #128 from mloskot/ml/trac-ticket-2979

Correct description of image_is_basic metafunction (Trac 2979)
This commit is contained in:
Mateusz Loskot
2018-09-24 20:29:36 +02:00
committed by GitHub

View File

@@ -115,7 +115,7 @@ template <typename View> struct view_is_basic : public mpl::false_ {};
template <typename Loc> struct view_is_basic<image_view<Loc> > : public locator_is_basic<Loc> {};
/// \ingroup GILIsBasic
/// \brief Basic images must use basic views and std::allocator of char
/// \brief Basic images must use basic views and std::allocator
template <typename Img> struct image_is_basic : public mpl::false_ {};
template <typename Pixel, bool IsPlanar, typename Alloc> struct image_is_basic<image<Pixel,IsPlanar,Alloc> > : public mpl::true_ {};