Skip to content
Snippets Groups Projects
Commit d30e8bd6 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[python|grids] add grid_name for const types

parent 916b9805
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,16 @@ struct grid_name
};
template <class G>
struct grid_name<const G>
{
static std::string value()
{
return grid_name<G>::value();
}
};
template <int dim>
struct grid_name<YaspGrid<dim, EquidistantOffsetCoordinates<double, dim>>>
{
......
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