Commit b6240057 authored by Jaikrishnan Menon's avatar Jaikrishnan Menon Committed by Scott Cyphers

Remove unnecessary static specifier that triggers warnings (#737)

parent 364f07ab
......@@ -57,7 +57,7 @@ namespace ngraph
}
template <typename T>
static std::string vector_to_string(const T& v)
std::string vector_to_string(const T& v)
{
std::ostringstream os;
os << "[ " << ngraph::join(v) << " ]";
......
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