aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/llvm-cov/SourceCoverageViewText.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2022-12-02 21:11:40 -0800
committerKazu Hirata <kazu@google.com>2022-12-02 21:11:40 -0800
commitb4482f7ca04e852cf610ef0e16542c888844d93d (patch)
treec57a5c84ed6e99c56cbe9685401cef676e69f73f /llvm/tools/llvm-cov/SourceCoverageViewText.cpp
parent110115993cad38755afa0371caa87459a93d5451 (diff)
downloadllvm-b4482f7ca04e852cf610ef0e16542c888844d93d.zip
llvm-b4482f7ca04e852cf610ef0e16542c888844d93d.tar.gz
llvm-b4482f7ca04e852cf610ef0e16542c888844d93d.tar.bz2
[tools] 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 'llvm/tools/llvm-cov/SourceCoverageViewText.cpp')
-rw-r--r--llvm/tools/llvm-cov/SourceCoverageViewText.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-cov/SourceCoverageViewText.cpp b/llvm/tools/llvm-cov/SourceCoverageViewText.cpp
index 5f3eca3..6755619 100644
--- a/llvm/tools/llvm-cov/SourceCoverageViewText.cpp
+++ b/llvm/tools/llvm-cov/SourceCoverageViewText.cpp
@@ -128,7 +128,7 @@ void SourceCoverageViewText::renderLine(raw_ostream &OS, LineRef L,
else if (Col == ExpansionCol)
Highlight = raw_ostream::CYAN;
else
- Highlight = None;
+ Highlight = std::nullopt;
}
// Show the rest of the line.