Skip to content
Snippets Groups Projects
Commit 18a886ff authored by Robert K's avatar Robert K
Browse files

[bugfix] fix fallout from removal of Conversion.

parent ff668eda
No related branches found
No related tags found
No related merge requests found
......@@ -94,7 +94,8 @@ namespace Dune
{
// field type
typedef typename Jacobian::field_type field_type;
static_assert((Conversion< ctype, field_type >::isTwoWay),
static_assert(( std::is_convertible<ctype, field_type>::value &&
std::is_convertible<field_type, ctype>::value ),
"Field type not compatible with geometry's coordinate type");
// size type
typedef typename Jacobian::size_type size_type;
......
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