P1006 adds support for constexpr in the specialization of pointer_traits
for raw pointers. This is necessary in order to use pointer_traits in
the upcoming constexpr containers. We expect P1006 to be voted into the
working draft for C++20 at the San Diego meeting.
Details
Details
Diff Detail
Diff Detail
- Repository
- rCXX libc++
- Build Status
Buildable 24357 Build 24356: arc lint + arc unit
Event Timeline
Comment Actions
Modulo nits, this looks fine to me.
Can you add a reference to www/upcoming_meeting.html, please?
libcxx/include/memory | ||
---|---|---|
46 | I usually add // constexpr in C++20 in places like this. | |
libcxx/test/std/utilities/memory/pointer.traits/pointer_to.pass.cpp | ||
15 | Again, // constexpr in C++20 | |
23–26 | This should be > 17; we only test against released values. | |
41 | Same here: > 17 |
Comment Actions
Pardon my confusing suggestion.
What I meant was "commit a link into upcoming_meeting.html", not "Update upcoming_meeting.html as part of this patch".
Since I wasn't clear, I'll do that for you.
I usually add // constexpr in C++20 in places like this.