From 23bd0e037b744d1f93bdfad59b7575017725a96c Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Sun, 12 Mar 2023 23:01:50 -0700 Subject: [PATCH] [mlir] Use std::optional instead of llvm::Optional (NFC) --- mlir/include/mlir/Debug/ExecutionContext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlir/include/mlir/Debug/ExecutionContext.h b/mlir/include/mlir/Debug/ExecutionContext.h index 43a838f..097ae37 100644 --- a/mlir/include/mlir/Debug/ExecutionContext.h +++ b/mlir/include/mlir/Debug/ExecutionContext.h @@ -117,7 +117,7 @@ private: /// Next point to stop execution as describe by `Control` enum. /// This is handle by indicating at which levels of depth the next /// break should happen. - Optional depthToBreak; + std::optional depthToBreak; /// Observers that are notified before and after the callback is executed. SmallVector observers; -- 2.7.4