Skip to content
Snippets Groups Projects
Commit bb245b8b authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[release] DenseMatrixAssignerImplementation is now a class everywhere.

This fixes a Clang warning.
parent d58db46d
No related branches found
No related tags found
No related merge requests found
......@@ -88,15 +88,15 @@ namespace Dune
{
template< class DenseMatrix, class RHS,
bool primitive = Conversion< RHS, typename DenseMatrix::field_type >::exists >
struct DenseMatrixAssignerImplementation;
class DenseMatrixAssignerImplementation;
template< class DenseMatrix, class RHS >
struct DenseMatrixAssignerImplementation< DenseMatrix, RHS, true >
class DenseMatrixAssignerImplementation< DenseMatrix, RHS, true >
{
public:
static void apply ( DenseMatrix &denseMatrix, const RHS &rhs )
{
typedef typename DenseMatrix::field_type field_type;
typedef typename DenseMatrix::size_type size_type;
const field_type value = static_cast< field_type >( 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