[ADT] Define None as std::nullopt (NFC)
authorKazu Hirata <kazu@google.com>
Tue, 22 Nov 2022 17:57:22 +0000 (09:57 -0800)
committerKazu Hirata <kazu@google.com>
Tue, 22 Nov 2022 17:57:22 +0000 (09:57 -0800)
This patch defines NoneType and None as std::nullopt_t and
std::nullopt, respectively.

This patch effectively makes None and std::nullopt interchangeable, so
we can gradually replace None with std::nullopt all while we continue
to use llvm::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

Differential Revision: https://reviews.llvm.org/D138468

llvm/include/llvm/ADT/None.h

index b3dc180..7202983 100644 (file)
 #ifndef LLVM_ADT_NONE_H
 #define LLVM_ADT_NONE_H
 
+#include <optional>
+
 namespace llvm {
 /// A simple null object to allow implicit construction of Optional<T>
 /// and similar types without having to spell out the specialization's name.
-enum class NoneType { None };
-const NoneType None = NoneType::None;
+using NoneType = std::nullopt_t;
+inline constexpr std::nullopt_t None = std::nullopt;
 }
 
 #endif