diff --git a/mlir/lib/Transforms/ViewOpGraph.cpp b/mlir/lib/Transforms/ViewOpGraph.cpp --- a/mlir/lib/Transforms/ViewOpGraph.cpp +++ b/mlir/lib/Transforms/ViewOpGraph.cpp @@ -122,7 +122,7 @@ 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 << "]"; }