From a116ef675ee19f051b29d24479df4937d5bd8065 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Tue, 4 Aug 2015 12:01:45 -0400 Subject: [PATCH] [Thermo] Fix IdealGasPhase constructor from XML_Node --- src/thermo/IdealGasPhase.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/thermo/IdealGasPhase.cpp b/src/thermo/IdealGasPhase.cpp index 43aea6a95..2033fec9a 100644 --- a/src/thermo/IdealGasPhase.cpp +++ b/src/thermo/IdealGasPhase.cpp @@ -7,6 +7,7 @@ #include "cantera/thermo/IdealGasPhase.h" #include "cantera/base/vec_functions.h" +#include "cantera/thermo/ThermoFactory.h" using namespace std; @@ -30,7 +31,7 @@ IdealGasPhase::IdealGasPhase(XML_Node& phaseRef, const std::string& id_) : m_p0(-1.0), m_logc0(0.0) { - initThermoXML(phaseRef, id_); + importPhase(phaseRef, this); } IdealGasPhase::IdealGasPhase(const IdealGasPhase& right) :