Further Mac OSX porting change: no backslash in macro agruments

This commit is contained in:
Hrvoje Jasak 2014-06-12 09:41:12 +01:00
parent 6a18db4aa3
commit a6bb6c2754

View file

@ -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) \