Skip to content
Snippets Groups Projects
Commit d7f9ad8c authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[cleanup] Remove superfluous semicolons after functions.

(reviewed by fetzer)


git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15524 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent fab63942
No related branches found
No related tags found
1 merge request!31Feature/colebrookwhiteboundarylayer
......@@ -264,7 +264,7 @@ public:
std::min(std::min(episodeMaxTimeStepSize(),
GET_PARAM_FROM_GROUP(TypeTag, Scalar, TimeManager, MaxTimeStepSize)),
std::max<Scalar>(0.0, endTime() - time()));
};
}
/*
* @}
......@@ -361,7 +361,7 @@ public:
return
std::max<Scalar>(0.0,
episodeLength() - (time() - episodeStartTime()));
};
}
/*
* @}
......
......@@ -90,7 +90,7 @@ class TwoPTwoCLocalResidual: public GET_PROP_TYPE(TypeTag, BaseLocalResidual)
// specified via the property system as default, and overwrite
// it by the run-time parameter from the Dune::ParameterTree
massUpwindWeight_ = GET_PARAM_FROM_GROUP(TypeTag, Scalar, Implicit, MassUpwindWeight);
};
}
/*!
* \brief Evaluate the storage term of the current solution in a
......
......@@ -66,7 +66,7 @@ public:
// specified via the property system as default, and overwrite
// it by the run-time parameter from the Dune::ParameterTree
massUpwindWeight_ = GET_PARAM_FROM_GROUP(TypeTag, Scalar, Implicit, MassUpwindWeight);
};
}
/*!
* \brief Evaluate the amount of all conservation quantities
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment