1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 09:15:38 +01:00

Hadrons: type fix in module creation

This commit is contained in:
Antonin Portelli 2016-12-02 11:04:34 +09:00
parent b5555d85a7
commit 8190523e4c

View File

@ -245,7 +245,7 @@ template <typename M>
void Environment::createModule(const std::string name,
const typename M::Par &par)
{
ModPt pt(new M(name));
std::unique_ptr<M> pt(new M(name));
pt->setPar(par);
pushModule(pt);