forked from OSchip/llvm-project
[mlir] Fix gcc-5 build in ViewOpGraph.cpp
Differential Revision: https://reviews.llvm.org/D107458
This commit is contained in:
parent
b44eb5a149
commit
438f700b4d
|
@ -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 << "]";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue