Skip to content

Commit

Permalink
eval_old_dofs needs var, not var_component
Browse files Browse the repository at this point in the history
Hopefully this fixes the newer bug found in
idaholab/moose#12309
  • Loading branch information
roystgnr committed Nov 21, 2018
1 parent 296cdec commit cdbb482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/systems/generic_projector.h
Expand Up @@ -739,7 +739,7 @@ void GenericProjector<FFunctor, GFunctor, FValue, ProjectionAction>::operator()
{
LOG_SCOPE ("copy_dofs", "GenericProjector");

f.eval_old_dofs(context, var_component, Ue.get_values());
f.eval_old_dofs(context, var, Ue.get_values());

action.insert(context, var, Ue);

Expand Down

0 comments on commit cdbb482

Please sign in to comment.