id summary reporter owner description type status milestone component version severity resolution keywords cc 11650 boost range size() fails concept on subarray of a const multi_array John Reid Ronald Garcia "Small test case: {{{ #include #include using namespace boost; typedef multi_array myarray; myarray a; const myarray const_a; void test() { boost::size( a[0] ); // Compiles fine boost::size( const_a ); // Compiles fine boost::size( const_a[0] ); // Fails single pass range concept } }}} gives me the attached errors. I'm using gcc 4.8.4 on Ubuntu 14.04 with boost 1.59.0" Bugs new To Be Determined multi_array Boost 1.59.0 Problem