Added std:: to fill() command.
solaris port issues
This commit is contained in:
parent
921caa1e5d
commit
5833af53c7
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue