Skip to content
Snippets Groups Projects
Commit fc8e155d authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

SerialVectorMatrixBuilder: Remove default VectorType_ template arg.

parent 15dff87d
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ using AssemblerLib::MeshComponentMap;
/**
* Non-parallel version using default LinAlg
*/
template <typename MatrixType_, typename VectorType_ = MathLib::DenseVector<double>>
template <typename MatrixType_, typename VectorType_>
class SerialVectorMatrixBuilder
{
public:
......@@ -68,7 +68,8 @@ public:
};
typedef SerialVectorMatrixBuilder<
MathLib::GlobalDenseMatrix<double>
MathLib::GlobalDenseMatrix<double>,
MathLib::DenseVector<double>
> SerialDenseVectorMatrixBuilder;
typedef SerialVectorMatrixBuilder<
......
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