id summary reporter owner description type status milestone component version severity resolution keywords cc 5440 Documentation error for boost::inner_product from boost range library tom.vercauteren@… Neil Groves "The [http://www.boost.org/doc/libs/1_46_1/libs/range/doc/html/range/reference/algorithms/numeric/inner_product.html documentation of boost::inner product] from boost range gives the following signature for the second version of boost::inner_product: {{{ template Value inner_product( const SinglePassRange1& rng1, const SinglePassRange2& rng2, Value init, BinaryOperation1 op1 ); }}} This does not conform to the actual signature found in [http://svn.boost.org/svn/boost/trunk/boost/range/numeric.hpp boost/range/numeric.hpp] and is thus in contradiction with the signature of std::inner_product. I believe the signature should be {{{ template Value inner_product( const SinglePassRange1& rng1, const SinglePassRange2& rng2, Value init, BinaryOperation1 op1, BinaryOperation2 op2 ); }}}" Bugs closed To Be Determined range Boost Release Branch Cosmetic fixed