[PATCH] D149647: [NFC][Clang]Fix static analyzer tool remarks about large copies by values
Soumi Manna via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed May 3 19:37:01 PDT 2023
Manna updated this revision to Diff 519337.
Manna retitled this revision from "[NFC][Clang]Fix static analyzer tool remarks about large copies by value" to "[NFC][Clang]Fix static analyzer tool remarks about large copies by values".
Manna edited the summary of this revision.
Manna added a comment.
Thank you for the reviews and feedbacks. I have applied suggestion about init capture that does a move instead of a copy.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D149647/new/
https://reviews.llvm.org/D149647
Files:
clang/lib/Format/Format.cpp
Index: clang/lib/Format/Format.cpp
===================================================================
--- clang/lib/Format/Format.cpp
+++ clang/lib/Format/Format.cpp
@@ -3485,7 +3485,7 @@
if (Style.InsertBraces) {
FormatStyle S = Expanded;
S.InsertBraces = true;
- Passes.emplace_back([&, S](const Environment &Env) {
+ Passes.emplace_back([&, S = std::move(S)](const Environment &Env) {
return BracesInserter(Env, S).process(/*SkipAnnotation=*/true);
});
}
@@ -3493,7 +3493,7 @@
if (Style.RemoveBracesLLVM) {
FormatStyle S = Expanded;
S.RemoveBracesLLVM = true;
- Passes.emplace_back([&, S](const Environment &Env) {
+ Passes.emplace_back([&, S = std::move(S)](const Environment &Env) {
return BracesRemover(Env, S).process(/*SkipAnnotation=*/true);
});
}
@@ -3501,7 +3501,7 @@
if (Style.RemoveSemicolon) {
FormatStyle S = Expanded;
S.RemoveSemicolon = true;
- Passes.emplace_back([&, S](const Environment &Env) {
+ Passes.emplace_back([&, S = std::move(S)](const Environment &Env) {
return SemiRemover(Env, S).process(/*SkipAnnotation=*/true);
});
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D149647.519337.patch
Type: text/x-patch
Size: 1203 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230504/05397cb6/attachment.bin>
More information about the cfe-commits
mailing list