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:
@@ -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_ {};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user