From: Kazu Hirata Date: Mon, 13 Mar 2023 06:01:50 +0000 (-0700) Subject: [mlir] Use std::optional instead of llvm::Optional (NFC) X-Git-Tag: upstream/17.0.6~15093 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=23bd0e037b744d1f93bdfad59b7575017725a96c;p=platform%2Fupstream%2Fllvm.git [mlir] Use std::optional instead of llvm::Optional (NFC) --- 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;