[clang-tools-extra] [NFC][clang-tidy] Update documentation for StatusOr check. (PR #176498)
Florian Mayer via cfe-commits
cfe-commits at lists.llvm.org
Fri Jan 16 16:07:16 PST 2026
================
@@ -317,9 +317,9 @@ example:
.. code:: cpp
- void f(std::vector<absl::StatusOr<int>> sors) {
- if (sors[0].ok()) {
- use(*sors[0]); // unsafe: it is unclear whether the status of `sors[0]` is ok.
+ void f(std::vector<absl::StatusOr<int>> xs) {
----------------
fmayer wrote:
I think you could go either way. `xs` signifies there are multiple. But it doesn't matter.
https://github.com/llvm/llvm-project/pull/176498
More information about the cfe-commits
mailing list