mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-11 22:50:45 +01:00
Hadrons: type fix in module creation
This commit is contained in:
parent
b5555d85a7
commit
8190523e4c
@ -245,7 +245,7 @@ template <typename M>
|
|||||||
void Environment::createModule(const std::string name,
|
void Environment::createModule(const std::string name,
|
||||||
const typename M::Par &par)
|
const typename M::Par &par)
|
||||||
{
|
{
|
||||||
ModPt pt(new M(name));
|
std::unique_ptr<M> pt(new M(name));
|
||||||
|
|
||||||
pt->setPar(par);
|
pt->setPar(par);
|
||||||
pushModule(pt);
|
pushModule(pt);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user