1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-14 01:35:36 +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> template <class Impl>
class WilsonFermion : public WilsonKernels<Impl>, public WilsonFermionStatic { class WilsonFermion : public WilsonFermionStatic, public Impl {
public: public:
INHERIT_IMPL_TYPES(Impl); INHERIT_IMPL_TYPES(Impl);
typedef WilsonKernels<Impl> Kernels; typedef WilsonKernels<Impl> Kernels;