aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Driver/Compilation.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2022-12-03 11:54:46 -0800
committerKazu Hirata <kazu@google.com>2022-12-03 11:54:46 -0800
commit5891420e6848e86a069dc6b7b73f175e22388f4a (patch)
tree99d82aa1d75dbd2abc6df791b87c384c49277431 /clang/lib/Driver/Compilation.cpp
parent0c2f6e36f9b2d26a2665e38a76ae8a95c158c4c7 (diff)
downloadllvm-5891420e6848e86a069dc6b7b73f175e22388f4a.zip
llvm-5891420e6848e86a069dc6b7b73f175e22388f4a.tar.gz
llvm-5891420e6848e86a069dc6b7b73f175e22388f4a.tar.bz2
[clang] Use std::nullopt instead of None (NFC)
This patch mechanically replaces None with std::nullopt where the compiler would warn if None were deprecated. The intent is to reduce the amount of manual work required in migrating from Optional to std::optional. This is part of an effort to migrate from llvm::Optional to std::optional: https://discourse.llvm.org/t/deprecating-llvm-optional-x-hasvalue-getvalue-getvalueor/63716
Diffstat (limited to 'clang/lib/Driver/Compilation.cpp')
-rw-r--r--clang/lib/Driver/Compilation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Driver/Compilation.cpp b/clang/lib/Driver/Compilation.cpp
index 07ecab9..bed46a8 100644
--- a/clang/lib/Driver/Compilation.cpp
+++ b/clang/lib/Driver/Compilation.cpp
@@ -297,7 +297,7 @@ void Compilation::initCompilationForDiagnostics() {
TCArgs.clear();
// Redirect stdout/stderr to /dev/null.
- Redirects = {None, {""}, {""}};
+ Redirects = {std::nullopt, {""}, {""}};
// Temporary files added by diagnostics should be kept.
ForceKeepTempFiles = true;