Skip to content
Snippets Groups Projects
Commit 2446e043 authored by Dmitri Naumov's avatar Dmitri Naumov Committed by Christoph Lehmann
Browse files

fixup TES

parent d9cd80d3
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ std::unique_ptr<Process> createTESProcess(
named_function_caller);
return std::unique_ptr<Process>{new TESProcess{
mesh, parameters, std::move(jacobian_assembler),
mesh, std::move(jacobian_assembler), parameters,
std::move(process_variables), std::move(secondary_variables),
std::move(named_function_caller), config}};
}
......
......@@ -121,7 +121,7 @@ TESLocalAssembler<ShapeFunction_, IntegrationMethod_, GlobalDim>::
static_cast<const unsigned>(
_shape_matrices.front()
.N.cols()) /* number of integration points */,
GlobalDim),
GlobalDim)
{
}
......
......@@ -63,7 +63,7 @@ TESProcess::TESProcess(
const BaseLib::ConfigTree& config)
: Process(mesh, std::move(jacobian_assembler), parameters,
std::move(process_variables), std::move(secondary_variables),
std::move(process_output), std::move(named_function_caller))
std::move(named_function_caller))
{
DBUG("Create TESProcess.");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment