make the name() method of problems non-static again

this allows to easily specify the problem name at runtime.
This commit is contained in:
Andreas Lauser
2014-04-25 17:22:28 +02:00
parent 049f7fa4e8
commit 0bb56e770f

View File

@@ -283,7 +283,7 @@ public:
/*!
* \copydoc FvBaseProblem::name
*/
static std::string name()
std::string name() const
{ return EWOMS_GET_PARAM(TypeTag, std::string, SimulationName); }
/*!