Commit 80fe3bab authored by wsttiger's avatar wsttiger
Browse files

Formatting

parent e9029c8e
......@@ -5,9 +5,10 @@
namespace migraph {
template<typename T> std::shared_ptr<T> make_shared_array(size_t size)
template <typename T>
std::shared_ptr<T> make_shared_array(size_t size)
{
return std::shared_ptr<T>(new T[size], std::default_delete<T[]>());
return std::shared_ptr<T>(new T[size], std::default_delete<T[]>());
}
} // namespace migraph
......
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