summaryrefslogtreecommitdiffstats
path: root/mlir/bindings/python/pybind.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mlir/bindings/python/pybind.cpp')
-rw-r--r--mlir/bindings/python/pybind.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/bindings/python/pybind.cpp b/mlir/bindings/python/pybind.cpp
index 825f800c0bd..54646cbe800 100644
--- a/mlir/bindings/python/pybind.cpp
+++ b/mlir/bindings/python/pybind.cpp
@@ -103,7 +103,7 @@ struct PythonValueHandle {
assert(value.hasType() && value.getType().isa<FunctionType>() &&
"can only call function-typed values");
- std::vector<Value *> argValues;
+ std::vector<ValuePtr> argValues;
argValues.reserve(args.size());
for (auto arg : args)
argValues.push_back(arg.value.getValue());
OpenPOWER on IntegriCloud