From 3fca54022e72f0cc76d1d9c8f5ed499ab0d73ba5 Mon Sep 17 00:00:00 2001 From: Christoph Lehmann <christoph.lehmann@ufz.de> Date: Sun, 21 Nov 2021 14:07:47 +0100 Subject: [PATCH] [PL] Renamed a type alias --- ProcessLib/Utils/GenericLocalAssemblerFactory.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ProcessLib/Utils/GenericLocalAssemblerFactory.h b/ProcessLib/Utils/GenericLocalAssemblerFactory.h index db2781d5c91..30ddf38414f 100644 --- a/ProcessLib/Utils/GenericLocalAssemblerFactory.h +++ b/ProcessLib/Utils/GenericLocalAssemblerFactory.h @@ -81,10 +81,10 @@ template <typename ShapeFunction, typename LocalAssemblerInterface, int GlobalDim, typename... ConstructorArgs> class LocalAssemblerBuilderFactory { - using GLDI = GenericLocalAssemblerFactory<LocalAssemblerInterface, + using GLAF = GenericLocalAssemblerFactory<LocalAssemblerInterface, ConstructorArgs...>; - using LocAsmIntfPtr = typename GLDI::LocAsmIntfPtr; - using LocAsmBuilder = typename GLDI::LocAsmBuilder; + using LocAsmIntfPtr = typename GLAF::LocAsmIntfPtr; + using LocAsmBuilder = typename GLAF::LocAsmBuilder; using IntegrationMethod = typename NumLib::GaussLegendreIntegrationPolicy< typename ShapeFunction::MeshElement>::IntegrationMethod; -- GitLab