Skip to content
Snippets Groups Projects
Commit f8b4a51d authored by Felix Gruber's avatar Felix Gruber
Browse files

[cleanup] replace last usage of Dune::Conversion

This is a follow-up to merge request !37.
parent 0d2a9d42
No related branches found
No related tags found
1 merge request!45[cleanup] replace last usage of Dune::Conversion
......@@ -96,7 +96,7 @@ namespace Dune
public:
static void apply ( DenseMatrix &denseMatrix, const RHS &rhs )
{
static_assert( (Conversion< const RHS, const DenseMatrix >::exists),
static_assert( (std::is_convertible< const RHS, const DenseMatrix >::value),
"No template specialization of DenseMatrixAssigner found" );
denseMatrix = static_cast< const DenseMatrix & >( rhs );
}
......
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