diff options
author | Fangrui Song <i@maskray.me> | 2022-12-05 04:13:11 +0000 |
---|---|---|
committer | Fangrui Song <i@maskray.me> | 2022-12-05 04:13:11 +0000 |
commit | 89fae41ef142892d8d6c20ead28465a34e12172b (patch) | |
tree | 95d80b9764e5d1d25bf8485a8426e6a409930b50 /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | 768cae4a5ab3a564b25ed36c379423f71b42d9d0 (diff) | |
download | llvm-89fae41ef142892d8d6c20ead28465a34e12172b.zip llvm-89fae41ef142892d8d6c20ead28465a34e12172b.tar.gz llvm-89fae41ef142892d8d6c20ead28465a34e12172b.tar.bz2 |
[IR] llvm::Optional => std::optional
Many llvm/IR/* files have been migrated by other contributors.
This migrates most remaining files.
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index e9ad412..5a8e921 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -115,7 +115,7 @@ using namespace llvm::opt; // Parse misexpect tolerance argument value. // Valid option values are integers in the range [0, 100) -inline Expected<Optional<uint32_t>> parseToleranceOption(StringRef Arg) { +static Expected<std::optional<uint32_t>> parseToleranceOption(StringRef Arg) { uint32_t Val; if (Arg.getAsInteger(10, Val)) return llvm::createStringError(llvm::inconvertibleErrorCode(), |