Skip to content
Snippets Groups Projects
Commit 0d7578f7 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler Committed by Tobias Leibner
Browse files

[type_traits] add is_yaspgrid

parent 4b29d8f4
No related branches found
No related tags found
No related merge requests found
......@@ -200,6 +200,15 @@ struct is_layer
{};
template <class T>
struct is_yaspgrid : public std::false_type
{};
template <int dim, class Coordinates>
struct is_yaspgrid<YaspGrid<dim, Coordinates>> : public std::true_type
{};
template <class T>
struct is_alugrid : public std::false_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