1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-10 07:55:35 +00:00

Kernels not an instantiated object, just static

This commit is contained in:
Peter Boyle 2018-03-24 19:33:13 -04:00
parent cedeaae7db
commit 572954ef12

View File

@ -43,7 +43,7 @@ public:
};
template <class Impl>
class WilsonFermion : public WilsonKernels<Impl>, public WilsonFermionStatic {
class WilsonFermion : public WilsonFermionStatic, public Impl {
public:
INHERIT_IMPL_TYPES(Impl);
typedef WilsonKernels<Impl> Kernels;