id summary reporter owner description type status milestone component version severity resolution keywords cc 11976 compile error when BOOST_UBLAS_SCALED_NORM is defined lebre Gunter "When **BOOST_UBLAS_SCALED_NORM** is defined, compiler says the following message. boost-1.60.0/include/boost/numeric/ublas/functional.hpp:448:13: error: '**size_type**' was not declared in this scope. I show wrong and correct code (I suppose) as bellow. {{{#!div style=""font-size: 90%"" Wrong: {{{#!c++ size_type size(e().size()); for (size_type i = 0; i < size; ++i) { }}} }}} {{{#!div style=""font-size: 90%"" Correct: {{{#!c++ typedef typename E::size_type vector_size_type; vector_size_type size(e().size()); for (vector_size_type i = 0; i < size; ++i) { }}} }}} From what I've seen so far, this is not fixed in version 1.35.0 ~ 1.60.0." Bugs new To Be Determined uBLAS Boost 1.60.0 Problem