Commit 05f2ee1c authored by Paul's avatar Paul
Browse files

Formatting

parent b93923d9
...@@ -87,16 +87,13 @@ struct value_parser ...@@ -87,16 +87,13 @@ struct value_parser
} }
}; };
template<class T> template <class T>
struct type_name struct type_name
{ {
static const std::string& apply() static const std::string& apply() { return migraphx::get_type_name<T>(); }
{
return migraphx::get_type_name<T>();
}
}; };
template<> template <>
struct type_name<std::string> struct type_name<std::string>
{ {
static const std::string& apply() static const std::string& apply()
...@@ -106,7 +103,7 @@ struct type_name<std::string> ...@@ -106,7 +103,7 @@ struct type_name<std::string>
} }
}; };
template<class T> template <class T>
struct type_name<std::vector<T>> struct type_name<std::vector<T>>
{ {
static const std::string& apply() static const std::string& apply()
......
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