Further Mac OSX porting change: no backslash in macro agruments
This commit is contained in:
parent
6a18db4aa3
commit
a6bb6c2754
1 changed files with 3 additions and 15 deletions
|
@ -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) \
|
||||
|
|
Reference in a new issue