Skip to content
Snippets Groups Projects
Commit 9898ad7e authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed Identity operator

parent 0a559644
No related branches found
No related tags found
No related merge requests found
......@@ -52,11 +52,11 @@ class Identity : public Functions::Domain< Dimensions, Functions::SpaceDomain >
const PointType& vertex,
const RealType& time = 0 ) const
{
return function.getPartialDerivative< XDiffOrder, YDiffOrder, ZDiffOrder >( vertex, time );
return function.template getPartialDerivative< XDiffOrder, YDiffOrder, ZDiffOrder >( vertex, time );
}
};
} // namespace Analytic
} // namespace Operators
} // namespace TNL
\ No newline at end of file
} // namespace TNL
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