Details
Details
- Reviewers
royjacobson - Group Reviewers
Restricted Project - Commits
- rG7a98d8351b27: [libc++] Fixes concepts overload resolution.
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Thank you for the quick fix!
LGTM, small nit about the bool& change.
libcxx/include/__format/format_arg.h | ||
---|---|---|
163 | I think here it's unnecessary because it's a specific type, but maybe you just preferred consistency? |
Comment Actions
Thanks for the review!
libcxx/include/__format/format_arg.h | ||
---|---|---|
163 | This matches the wording of http://eel.is/c++draft/format.arg closer. (Note I use a const reference instead of an rvalue reference. This was the wording of an earlier revision of the Standard, changing it to an rvalue reference is work in progress.) |
I think here it's unnecessary because it's a specific type, but maybe you just preferred consistency?