Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
clang/lib/Format/UnwrappedLineParser.cpp | ||
---|---|---|
874–876 | 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–876 | 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?