diff options
Diffstat (limited to 'mlir/examples/toy/Ch5/mlir/ShapeInferencePass.cpp')
-rw-r--r-- | mlir/examples/toy/Ch5/mlir/ShapeInferencePass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/examples/toy/Ch5/mlir/ShapeInferencePass.cpp b/mlir/examples/toy/Ch5/mlir/ShapeInferencePass.cpp index 6437c0b3f73..b6808d713eb 100644 --- a/mlir/examples/toy/Ch5/mlir/ShapeInferencePass.cpp +++ b/mlir/examples/toy/Ch5/mlir/ShapeInferencePass.cpp @@ -376,6 +376,6 @@ public: namespace toy { std::unique_ptr<mlir::Pass> createShapeInferencePass() { - return llvm::make_unique<ShapeInferencePass>(); + return std::make_unique<ShapeInferencePass>(); } } // namespace toy |