From fb45eb2eb2cc59625d44d5a9258bfa9b73ed86a1 Mon Sep 17 00:00:00 2001 From: paboyle Date: Thu, 14 Jul 2016 23:57:26 +0100 Subject: [PATCH] 5d ls vec rename of impl class --- lib/qcd/action/Actions.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/lib/qcd/action/Actions.h b/lib/qcd/action/Actions.h index e2505f25..be08cdde 100644 --- a/lib/qcd/action/Actions.h +++ b/lib/qcd/action/Actions.h @@ -107,12 +107,21 @@ typedef SymanzikGaugeAction ConjugateSymanzikGaugeAction // for EVERY .cc file. This define centralises the list and restores global push of impl cases //////////////////////////////////////////////////////////////////////////////////////////////////// -#define FermOpTemplateInstantiate(A) \ + +#define FermOp4dVecTemplateInstantiate(A) \ template class A; \ template class A; \ template class A; \ template class A; +#define FermOp5dVecTemplateInstantiate(A) \ + template class A; \ + template class A; + +#define FermOpTemplateInstantiate(A) \ + FermOp4dVecTemplateInstantiate(A) \ + FermOp5dVecTemplateInstantiate(A) + #define GparityFermOpTemplateInstantiate(A) ////////////////////////////////////////////