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

[type_traits] add printing of StencilType::automatic

parent a84d31f4
Branches
No related tags found
3 merge requests!10Draft: consolidate refactoring work,!5Work on refactor operators bindings,!1Refactor operators
......@@ -69,6 +69,8 @@ inline std::ostream& operator<<(std::ostream& out, const Stencil& stencil)
out << "intersection";
else if (stencil == Stencil::element_and_intersection)
out << "element_and_intersection";
else if (stencil == Stencil::automatic)
out << "automatic";
else
out << "Stencil(" << int(stencil) << ")";
return out;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment