Commit 455e6535 authored by Paul's avatar Paul
Browse files

Format

parent 9d2f66e7
...@@ -246,9 +246,7 @@ std::string shape::cpp_type(shape::type_t t) ...@@ -246,9 +246,7 @@ std::string shape::cpp_type(shape::type_t t)
bool shape::is_integral(shape::type_t t) bool shape::is_integral(shape::type_t t)
{ {
bool result = false; bool result = false;
visit(t, [&](auto as) { visit(t, [&](auto as) { result = as.is_integral(); });
result = as.is_integral();
});
return result; return result;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment