Skip to content
Snippets Groups Projects
Unverified Commit 813c42fd authored by René Fritze's avatar René Fritze
Browse files

[spaces] fix clang compile

GCC, for some reason, is perfectly fine with this missing member,
although it's explicitly accessed in a test!
parent c408bf41
No related branches found
No related tags found
No related merge requests found
...@@ -83,6 +83,7 @@ public: ...@@ -83,6 +83,7 @@ public:
using RangeFieldType = R; using RangeFieldType = R;
using BackendType = double; using BackendType = double;
static const constexpr XT::Grid::Backends layer_backend = XT::Grid::Backends::view; static const constexpr XT::Grid::Backends layer_backend = XT::Grid::Backends::view;
static const constexpr Backends backend_type{Backends::gdt};
typedef DofCommunicationChooser<GridLayerType> DofCommunicationChooserType; typedef DofCommunicationChooser<GridLayerType> DofCommunicationChooserType;
typedef typename DofCommunicationChooserType::Type DofCommunicatorType; typedef typename DofCommunicationChooserType::Type DofCommunicatorType;
}; // class ContinuousLagrangeSpaceTraits }; // class ContinuousLagrangeSpaceTraits
......
...@@ -86,6 +86,7 @@ public: ...@@ -86,6 +86,7 @@ public:
using RangeFieldType = R; using RangeFieldType = R;
using BackendType = double; using BackendType = double;
static const constexpr XT::Grid::Backends layer_backend = XT::Grid::Backends::view; static const constexpr XT::Grid::Backends layer_backend = XT::Grid::Backends::view;
static const constexpr Backends backend_type{Backends::gdt};
typedef DofCommunicationChooser<GridLayerType, false> DofCommunicationChooserType; typedef DofCommunicationChooser<GridLayerType, false> DofCommunicationChooserType;
typedef typename DofCommunicationChooserType::Type DofCommunicatorType; typedef typename DofCommunicationChooserType::Type DofCommunicatorType;
}; // class RtSpaceTraits }; // class RtSpaceTraits
......
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