Corrected template argument for cloud typedefs

This commit is contained in:
andy
2010-01-11 16:22:23 +00:00
parent a813b9dc71
commit 521837fc0f

View File

@ -42,13 +42,31 @@ Description
namespace Foam namespace Foam
{ {
typedef ReactingMultiphaseCloud<BasicReactingParcel<constGasThermoPhysics> > typedef ReactingMultiphaseCloud
<
BasicReactingMultiphaseParcel
<
constGasThermoPhysics
>
>
constThermoReactingMultiphaseCloud; constThermoReactingMultiphaseCloud;
typedef ReactingMultiphaseCloud<BasicReactingParcel<gasThermoPhysics> > typedef ReactingMultiphaseCloud
<
BasicReactingMultiphaseParcel
<
gasThermoPhysics
>
>
thermoReactingMultiphaseCloud; thermoReactingMultiphaseCloud;
typedef ReactingMultiphaseCloud<BasicReactingParcel<icoPoly8ThermoPhysics> > typedef ReactingMultiphaseCloud
<
BasicReactingMultiphaseParcel
<
icoPoly8ThermoPhysics
>
>
icoPoly8ThermoReactingMultiphaseCloud; icoPoly8ThermoReactingMultiphaseCloud;
} }