[libcxx-commits] [PATCH] D59099: Integer and pointer types of 'midpoint' from P0811

Marshall Clow via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Fri Mar 29 17:55:36 PDT 2019


mclow.lists closed this revision.
mclow.lists marked 2 inline comments as done.
mclow.lists added a comment.
Herald added a subscriber: dexonsmith.

Landed as r356162



================
Comment at: libcxx/include/numeric:553
+{
+    return __a + midpoint<ptrdiff_t>(0, __b - __a);
+}
----------------
EricWF wrote:
> `minpoint` needs to be qualified. 
I changed this to be: `return __a + _VSTD::midpoint(ptrdiff_t(0), __b - __a);`


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D59099/new/

https://reviews.llvm.org/D59099





More information about the libcxx-commits mailing list