Commit 3736ae50 authored by Paul's avatar Paul
Browse files

Fix compile error with gcc 5

parent adca9a26
......@@ -74,7 +74,7 @@ struct tf_parser
{
std::vector<instruction_ref> result(args.size());
std::transform(
args.begin(), args.end(), result.begin(), [&](auto ins) { return to_nchw(ins); });
args.begin(), args.end(), result.begin(), [&](auto ins) { return this->to_nchw(ins); });
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