Skip to content
Snippets Groups Projects
Commit 4dcf384c authored by René Fritze's avatar René Fritze Committed by Tobias Leibner
Browse files

[provider] switch to custom non_t

parent 9a5bbdf0
No related branches found
No related tags found
No related merge requests found
......@@ -36,10 +36,14 @@ namespace Dune {
namespace XT {
namespace Grid {
template <class T>
using DefaultDDGridImp = DD::SubdomainGrid<T>;
struct none_t
{
none_t() = delete;
};
using DefaultDDGridImp = none_t;
template <class GridImp, typename DdGridImp = DefaultDDGridImp<GridImp>>
template <class GridImp, typename DdGridImp = DefaultDDGridImp>
class GridProvider
{
static_assert(is_grid<GridImp>::value, "");
......
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