From a6bb6c2754f13a001e5bc9da65c95d9a0c61e54e Mon Sep 17 00:00:00 2001 From: Hrvoje Jasak Date: Thu, 12 Jun 2014 09:41:12 +0100 Subject: [PATCH] Further Mac OSX porting change: no backslash in macro agruments --- .../include/createCoalParcelTypes.H | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/src/lagrangian/coalCombustion/include/createCoalParcelTypes.H b/src/lagrangian/coalCombustion/include/createCoalParcelTypes.H index e31e5e8e1..0c5815f0e 100644 --- a/src/lagrangian/coalCombustion/include/createCoalParcelTypes.H +++ b/src/lagrangian/coalCombustion/include/createCoalParcelTypes.H @@ -33,21 +33,9 @@ License #define createCoalParcelType(ParcelType) \ \ - createCoalParcelThermoType \ - ( \ - ParcelType, \ - constGasThermoPhysics \ - ); \ - createCoalParcelThermoType \ - ( \ - ParcelType, \ - gasThermoPhysics \ - ); \ - createCoalParcelThermoType \ - ( \ - ParcelType, \ - icoPoly8ThermoPhysics \ - ); + createCoalParcelThermoType(ParcelType, constGasThermoPhysics); \ + createCoalParcelThermoType(ParcelType, gasThermoPhysics); \ + createCoalParcelThermoType(ParcelType, icoPoly8ThermoPhysics); #define createCoalParcelThermoType(ParcelType, ThermoType) \