mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-22 09:16:27 -06:00
rename Parameters::ParamRegFinalizer to ParamRegFinalizerTT
for the transition phase we need a finalizer that uses the typetag. this class will eventually disappear
This commit is contained in:
parent
b682b7da03
commit
add584ffb4
@ -103,7 +103,7 @@ public:
|
||||
};
|
||||
|
||||
template <class TypeTag, template<class,class> class Property>
|
||||
class ParamRegFinalizer_ : public ParamRegFinalizerBase_
|
||||
class ParamRegFinalizerTT_ : public ParamRegFinalizerBase_
|
||||
{
|
||||
public:
|
||||
void retrieve() override
|
||||
@ -915,7 +915,7 @@ void registerParam(const char* usageString)
|
||||
const char* const>, std::string,
|
||||
std::remove_const_t<decltype(defaultValue)>>;
|
||||
MetaData::registrationFinalizers().push_back(
|
||||
std::make_unique<ParamRegFinalizer_<TypeTag, Param>>());
|
||||
std::make_unique<ParamRegFinalizerTT_<TypeTag, Param>>());
|
||||
|
||||
ParamInfo paramInfo;
|
||||
paramInfo.paramName = paramName;
|
||||
|
Loading…
Reference in New Issue
Block a user