// // Copyright 2013 Christian Henning // // Distributed under the Boost Software License, Version 1.0 // See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt // #include #include #include namespace gil = boost::gil; void test_pixel_bit_size() { using image_t = gil::bit_aligned_image5_type < 16, 16, 16, 8, 8, gil::devicen_layout_t<5> >::type; static_assert(gil::pixel_bit_size::value == 64, ""); } int main() { test_pixel_bit_size(); }