From 0f1a6e14a12d01bafa5f2cd57a4215c9d5087d9d Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Wed, 27 Mar 2019 14:06:01 -0600 Subject: [PATCH] rename macro --- source/lac/ginkgo_solver.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source/lac/ginkgo_solver.cc b/source/lac/ginkgo_solver.cc index 59335c12da..8223fc6a4d 100644 --- a/source/lac/ginkgo_solver.cc +++ b/source/lac/ginkgo_solver.cc @@ -289,20 +289,20 @@ namespace GinkgoWrappers } // Explicit instantiations in GinkgoWrappers -# define GKO_DEALII_INSTANTIATE_FOR_EACH_VALUE_AND_INDEX_TYPE(_macro) \ - template _macro(float, int32_t); \ - template _macro(double, int32_t); \ - template _macro(float, int64_t); \ +# define DEALII_INSTANTIATE_FOR_EACH_VALUE_AND_INDEX_TYPE(_macro) \ + template _macro(float, int32_t); \ + template _macro(double, int32_t); \ + template _macro(float, int64_t); \ template _macro(double, int64_t); # define DECLARE_SOLVER_BASE(ValueType, IndexType) \ class SolverBase - GKO_DEALII_INSTANTIATE_FOR_EACH_VALUE_AND_INDEX_TYPE(DECLARE_SOLVER_BASE) + DEALII_INSTANTIATE_FOR_EACH_VALUE_AND_INDEX_TYPE(DECLARE_SOLVER_BASE) # undef DECLARE_SOLVER_BASE # define DECLARE_SOLVER_CG(ValueType, IndexType) \ class SolverCG - GKO_DEALII_INSTANTIATE_FOR_EACH_VALUE_AND_INDEX_TYPE(DECLARE_SOLVER_CG) + DEALII_INSTANTIATE_FOR_EACH_VALUE_AND_INDEX_TYPE(DECLARE_SOLVER_CG) # undef DECLARE_SOLVER_CG } // namespace GinkgoWrappers -- 2.39.5