solaris port:

std::inner_product()
This commit is contained in:
Harry Moffat 2006-12-14 18:07:28 +00:00
parent ba8a8e5bf7
commit 798e774cf3

View file

@ -200,7 +200,7 @@ namespace Cantera {
* values.
*/
doublereal mean_X(const doublereal* Q) const {
return m_mmw*inner_product(m_ym.begin(), m_ym.end(), Q, 0.0);
return m_mmw*std::inner_product(m_ym.begin(), m_ym.end(), Q, 0.0);
}
/**