Added std:: to fill() command.

solaris port issues
This commit is contained in:
Harry Moffat 2006-12-14 16:46:49 +00:00
parent 921caa1e5d
commit 5833af53c7

View file

@ -48,7 +48,7 @@ namespace Cantera {
Array2D(int m, int n, doublereal v = 0.0)
: m_nrows(m), m_ncols(n) {
m_data.resize(n*m);
fill(m_data.begin(), m_data.end(), v);
std::fill(m_data.begin(), m_data.end(), v);
}
/// copy constructor