[PATCH] D115121: Add support for return values in bugprone-stringview-nullptr
CJ Johnson via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sun Dec 5 11:15:11 PST 2021
CJ-Johnson added inline comments.
================
Comment at: clang-tools-extra/clang-tidy/bugprone/StringviewNullptrCheck.cpp:174-194
return applyFirst(
{HandleTemporaryCXXFunctionalCastExpr,
HandleTemporaryCXXTemporaryObjectExprAndCompoundLiteralExpr,
- HandleTemporaryCStyleCastExpr, HandleTemporaryCXXStaticCastExpr,
- HandleStackCopyInitialization, HandleStackDirectInitialization,
+ HandleTemporaryCStyleCastExpr,
+ HandleTemporaryCXXStaticCastExpr,
+ HandleTemporaryReturnValue,
+ HandleStackCopyInitialization,
----------------
The diff isn't great here, but these weren't actually changed. I just inserted the new one, `HandleTemporaryReturnValue`, and it caused a reflow.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D115121/new/
https://reviews.llvm.org/D115121
More information about the cfe-commits
mailing list