From ca8d1310925621e5243fbffd484f0ea3bb97658b Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Thu, 13 Jun 2013 22:50:03 +0000 Subject: [PATCH] Fix a few missing includes in header files These header files had implicit dependencies on other header files, which are now made explicit. --- include/cantera/kinetics/RxnRates.h | 2 ++ include/cantera/thermo/SimpleThermo.h | 1 + include/cantera/transport/WaterTransport.h | 1 + 3 files changed, 4 insertions(+) diff --git a/include/cantera/kinetics/RxnRates.h b/include/cantera/kinetics/RxnRates.h index 14fe48d7c..f6ad5fa2d 100644 --- a/include/cantera/kinetics/RxnRates.h +++ b/include/cantera/kinetics/RxnRates.h @@ -14,6 +14,8 @@ #include "cantera/base/ctexceptions.h" #include "cantera/base/stringUtils.h" +#include + namespace Cantera { diff --git a/include/cantera/thermo/SimpleThermo.h b/include/cantera/thermo/SimpleThermo.h index a34af506e..21431a0d2 100644 --- a/include/cantera/thermo/SimpleThermo.h +++ b/include/cantera/thermo/SimpleThermo.h @@ -10,6 +10,7 @@ #include "SpeciesThermoMgr.h" #include "speciesThermoTypes.h" +#include "cantera/base/global.h" namespace Cantera { diff --git a/include/cantera/transport/WaterTransport.h b/include/cantera/transport/WaterTransport.h index 6be75281d..2eda6a5e1 100644 --- a/include/cantera/transport/WaterTransport.h +++ b/include/cantera/transport/WaterTransport.h @@ -7,6 +7,7 @@ #include "TransportBase.h" #include "cantera/numerics/DenseMatrix.h" #include "LiquidTransportParams.h" +#include "cantera/thermo/WaterPropsIAPWS.h" namespace Cantera {