[AST] Use std::optional in ExprConstant.cpp (NFC)
authorKazu Hirata <kazu@google.com>
Sat, 10 Dec 2022 06:19:46 +0000 (22:19 -0800)
committerKazu Hirata <kazu@google.com>
Sat, 10 Dec 2022 06:19:46 +0000 (22:19 -0800)
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

clang/lib/AST/ExprConstant.cpp

index ce97744..280b37a 100644 (file)
@@ -60,6 +60,7 @@
 #include "llvm/Support/raw_ostream.h"
 #include <cstring>
 #include <functional>
+#include <optional>
 
 #define DEBUG_TYPE "exprconstant"
 
@@ -6833,7 +6834,7 @@ class BitCastBuffer {
   // FIXME: Its possible under the C++ standard for 'char' to not be 8 bits, but
   // we don't support a host or target where that is the case. Still, we should
   // use a more generic type in case we ever do.
-  SmallVector<Optional<unsigned char>, 32> Bytes;
+  SmallVector<std::optional<unsigned char>, 32> Bytes;
 
   static_assert(std::numeric_limits<unsigned char>::digits >= 8,
                 "Need at least 8 bit unsigned char");