[PATCH] D153860: [clang-tidy] Fix modernize-use-std-print check when return value used
Mike Crowe via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Jun 27 05:24:15 PDT 2023
mikecrowe created this revision.
mikecrowe added a reviewer: PiotrZSL.
Herald added subscribers: carlosgalvezp, xazax.hun.
Herald added a reviewer: njames93.
Herald added a project: All.
mikecrowe requested review of this revision.
Herald added a project: clang-tools-extra.
Herald added a subscriber: cfe-commits.
The initial implementation of the modernize-use-std-print check was
capable of converting calls to printf (etc.) which used the return value
to calls to std::print which has no return value, thus breaking the
code.
Use code inspired by the implementation of bugprone-unused-return-value
check to ignore cases where the return value is used. Add appropriate
lit test cases and documentation.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D153860
Files:
clang-tools-extra/clang-tidy/modernize/UseStdPrintCheck.cpp
clang-tools-extra/docs/clang-tidy/checks/modernize/use-std-print.rst
clang-tools-extra/test/clang-tidy/checkers/modernize/use-std-print-absl.cpp
clang-tools-extra/test/clang-tidy/checkers/modernize/use-std-print-custom.cpp
clang-tools-extra/test/clang-tidy/checkers/modernize/use-std-print.cpp
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D153860.534925.patch
Type: text/x-patch
Size: 17897 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230627/05d71b98/attachment-0001.bin>
More information about the cfe-commits
mailing list