diff --git a/ProcessLib/Utils/LocalAssemblerFactoryForDimGeN.h b/ProcessLib/Utils/LocalAssemblerFactoryForDimGeN.h index 9f0438115e1ce9948a187cd872732104ab10383e..7ac877f6d5e6341b5125cda33b9376968fea47cb 100644 --- a/ProcessLib/Utils/LocalAssemblerFactoryForDimGeN.h +++ b/ProcessLib/Utils/LocalAssemblerFactoryForDimGeN.h @@ -54,10 +54,10 @@ public: BaseLib::TMP::foreach<EnabledElementTraits>( [this]<typename ET>(ET*) { - using Elt = typename ET::Element; - using Shp = typename ET::ShapeFunction; - Base::_builders[std::type_index(typeid(Elt))] = - LocalAssemblerBuilderFactory<Shp, + using MeshElement = typename ET::MeshElement; + using ShapeFunction = typename ET::ShapeFunction; + Base::_builders[std::type_index(typeid(MeshElement))] = + LocalAssemblerBuilderFactory<ShapeFunction, LocalAssemblerInterface, LocalAssemblerImplementation, GlobalDim, diff --git a/ProcessLib/Utils/LocalAssemblerFactoryTaylorHoodForOrderGeN.h b/ProcessLib/Utils/LocalAssemblerFactoryTaylorHoodForOrderGeN.h index 288f8e1663628e96f2ae05d58eb6646e6f9a1e5e..148e69c1a58afcbfd31e9fbd63ae7631c6fd0c3b 100644 --- a/ProcessLib/Utils/LocalAssemblerFactoryTaylorHoodForOrderGeN.h +++ b/ProcessLib/Utils/LocalAssemblerFactoryTaylorHoodForOrderGeN.h @@ -126,14 +126,15 @@ public: BaseLib::TMP::foreach<EnabledElementTraits>( [this]<typename ET>(ET*) { - using Elt = typename ET::Element; - using Shp = typename ET::ShapeFunction; - using ShpLow = typename ET::LowerOrderShapeFunction; + using MeshElement = typename ET::Element; + using ShapeFunction = typename ET::ShapeFunction; + using LowerOrderShapeFunction = + typename ET::LowerOrderShapeFunction; - Base::_builders[std::type_index(typeid(Elt))] = + Base::_builders[std::type_index(typeid(MeshElement))] = LocalAssemblerBuilderFactoryTaylorHood< - Shp, - ShpLow, + ShapeFunction, + LowerOrderShapeFunction, LocalAssemblerInterface, LocalAssemblerImplementation, GlobalDim,