Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 210427 | Differences between
and this patch

Collapse All | Expand All

(-)bit_aligned_pixel_reference.hpp (-1 / +1 lines)
Lines 121-127 Link Here
121
          bool IsMutable>
121
          bool IsMutable>
122
struct bit_aligned_pixel_reference {
122
struct bit_aligned_pixel_reference {
123
    BOOST_STATIC_CONSTANT(int, bit_size = (mpl::accumulate<ChannelBitSizes, mpl::int_<0>, mpl::plus<mpl::_1, mpl::_2> >::type::value));
123
    BOOST_STATIC_CONSTANT(int, bit_size = (mpl::accumulate<ChannelBitSizes, mpl::int_<0>, mpl::plus<mpl::_1, mpl::_2> >::type::value));
124
    typedef bit_range<bit_size,IsMutable>                                           bit_range_t;
124
    typedef boost::gil::bit_range<bit_size,IsMutable>                               bit_range_t;
125
    typedef BitField                                                                bitfield_t;  
125
    typedef BitField                                                                bitfield_t;  
126
    typedef typename mpl::if_c<IsMutable,unsigned char*,const unsigned char*>::type data_ptr_t;
126
    typedef typename mpl::if_c<IsMutable,unsigned char*,const unsigned char*>::type data_ptr_t;
127
127

Return to bug 210427