Details
Details
Diff Detail
Diff Detail
Event Timeline
| clang/lib/Format/UnwrappedLineParser.cpp | ||
|---|---|---|
| 874 | Are there many captures here? Wouldn't it be better to be explicit and/or capture by ref? Do we need a mutable lambda? | |
| clang/lib/Format/UnwrappedLineParser.cpp | ||
|---|---|---|
| 874 | Yes, too many to be explicit for me. They are all integrals/pointers, a couple of which are modified in the lambda, hence by copy and mutable. | |
Are there many captures here? Wouldn't it be better to be explicit and/or capture by ref? Do we need a mutable lambda?