Commit 90ba5aba authored by Paul's avatar Paul
Browse files

Fix compile error on gcc 5

parent 96c856c5
...@@ -178,7 +178,7 @@ struct stream_info ...@@ -178,7 +178,7 @@ struct stream_info
{ {
bool result = false; bool result = false;
f([&](auto s) { f([&](auto s) {
result = different(f, s); result = this->different(f, s);
return false; return false;
}); });
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