[mlir] Fix gcc-5 build in ViewOpGraph.cpp

Differential Revision: https://reviews.llvm.org/D107458
This commit is contained in:
Matthias Springer 2021-08-04 22:48:34 +09:00
parent b44eb5a149
commit 438f700b4d
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ private:
void emitAttrList(raw_ostream &os, const AttributeMap &map) {
os << "[";
interleaveComma(map, os, [&](const auto &it) {
os << attrStmt(it.getKey(), it.getValue());
os << this->attrStmt(it.getKey(), it.getValue());
});
os << "]";
}