Skip to content
Snippets Groups Projects
Commit 65015370 authored by Elias Pipping's avatar Elias Pipping
Browse files

[Cleanup] Drop "Type" from template

parent c1f4b3de
No related branches found
No related tags found
No related merge requests found
......@@ -143,8 +143,8 @@ void BackwardEuler<Vector, Matrix, Function, dim>::extractRelativeVelocity(
velocity = vr;
}
template <class Vector, class MatrixType, class FunctionType, size_t dim>
void BackwardEuler<Vector, MatrixType, FunctionType, dim>::extractOldVelocity(
template <class Vector, class Matrix, class Function, size_t dim>
void BackwardEuler<Vector, Matrix, Function, dim>::extractOldVelocity(
Vector &velocity) const {
velocity = v_o;
}
......@@ -162,8 +162,8 @@ void Newmark<Vector, Matrix, Function, dim>::extractRelativeVelocity(
velocity = vr;
}
template <class Vector, class MatrixType, class FunctionType, size_t dim>
void Newmark<Vector, MatrixType, FunctionType, dim>::extractOldVelocity(
template <class Vector, class Matrix, class Function, size_t dim>
void Newmark<Vector, Matrix, Function, dim>::extractOldVelocity(
Vector &velocity) const {
velocity = v_o;
}
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