Skip to content
Snippets Groups Projects
Commit 97540c88 authored by Christian Engwer's avatar Christian Engwer
Browse files

actually the field_type isn't const at all, even if the container is const.

[[Imported from SVN: r6163]]
parent 722219b6
No related branches found
No related tags found
No related merge requests found
......@@ -27,8 +27,8 @@ namespace Dune {
template<class T>
struct FieldTraits<const T>
{
typedef const typename FieldTraits<T>::field_type field_type;
typedef const typename FieldTraits<T>::real_type real_type;
typedef typename FieldTraits<T>::field_type field_type;
typedef typename FieldTraits<T>::real_type real_type;
};
template<class T>
......
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