Solaris 10 updaet
Put a std:: on copy.
This commit is contained in:
parent
a0d3e62607
commit
e287fef1ec
1 changed files with 3 additions and 2 deletions
|
|
@ -15,6 +15,7 @@
|
|||
|
||||
#include "IdealMolalSoln.h"
|
||||
#include "importCTML.h"
|
||||
#include <math.h>
|
||||
|
||||
namespace Cantera {
|
||||
|
||||
|
|
@ -811,8 +812,8 @@ namespace Cantera {
|
|||
*/
|
||||
void IdealMolalSoln::getStandardVolumes(doublereal *vol) const {
|
||||
_updateStandardStateThermo();
|
||||
copy(m_speciesMolarVolume.begin(),
|
||||
m_speciesMolarVolume.end(), vol);
|
||||
std::copy(m_speciesMolarVolume.begin(),
|
||||
m_speciesMolarVolume.end(), vol);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue