resolve unused parameter warnings in USER-ATC package
This commit is contained in:
@ -27,7 +27,7 @@ namespace ATC {
|
||||
// modify
|
||||
// parses inputs and modifies state of the integrator
|
||||
//--------------------------------------------------------
|
||||
bool MomentumTimeIntegrator::modify(int narg, char **arg)
|
||||
bool MomentumTimeIntegrator::modify(int /* narg */, char **arg)
|
||||
{
|
||||
bool foundMatch = false;
|
||||
int argIndex = 0;
|
||||
@ -611,7 +611,7 @@ namespace ATC {
|
||||
// compute_velocity_delta
|
||||
//--------------------------------------------------------
|
||||
void ElasticTimeIntegratorFractionalStep::compute_velocity_delta(const DENS_MAT & atomicMomentumDelta,
|
||||
double dt)
|
||||
double /* dt */)
|
||||
{
|
||||
DENS_MAT & myAtomicVelocityDelta(atomicVelocityDelta_.set_quantity());
|
||||
myAtomicVelocityDelta = nodalAtomicMomentumOld_ + atomicMomentumDelta;
|
||||
@ -832,7 +832,7 @@ namespace ATC {
|
||||
// compute_velocity_delta
|
||||
//--------------------------------------------------------
|
||||
void FluidsTimeIntegratorGear::compute_velocity_delta(const DENS_MAT & atomicMomentumDelta,
|
||||
double dt)
|
||||
double /* dt */)
|
||||
{
|
||||
DENS_MAT & myAtomicVelocityDelta(atomicVelocityDelta_.set_quantity());
|
||||
myAtomicVelocityDelta = nodalAtomicMomentumOld_ + atomicMomentumDelta;
|
||||
|
||||
Reference in New Issue
Block a user