Update the definition of getSpeciesFluxesES to use all size_t

instead of int to match the definition for the base Transport class.
Prior to this LiquidTransport::getSpeciesFluxesES was not overriding
the virtual Transport::getSpeciesFluxesES because the prototypes
differed.
This commit is contained in:
Victor Brunini 2012-11-13 21:59:11 +00:00
parent 79756fff7e
commit 28171eeece
2 changed files with 4 additions and 4 deletions

View file

@ -636,9 +636,9 @@ public:
*/
virtual void getSpeciesFluxesES(size_t ndim,
const doublereal* grad_T,
int ldx,
size_t ldx,
const doublereal* grad_X,
int ldf,
size_t ldf,
const doublereal* grad_Phi,
doublereal* fluxes);

View file

@ -1143,9 +1143,9 @@ void LiquidTransport::getSpeciesFluxes(size_t ndim,
*/
void LiquidTransport::getSpeciesFluxesES(size_t ndim,
const doublereal* grad_T,
int ldx,
size_t ldx,
const doublereal* grad_X,
int ldf,
size_t ldf,
const doublereal* grad_V,
doublereal* fluxes)
{