Fix ambiguous call to 'pow'

This caused compilation errors with MSVC.
This commit is contained in:
Ray Speth 2014-07-29 00:51:00 +00:00
parent 9c3ac51818
commit 73af17bd54

View file

@ -61,7 +61,7 @@ double HighPressureGasTransport::thermalConductivity()
m_thermo -> getPartialMolarVolumes(&V_k[0]);
doublereal L_i_min = pow(100,100);
doublereal L_i_min = BigNumber;
for (size_t i = 0; i < m_nsp; i++) {
doublereal Tc_i = Tcrit_i(i);