[libcxx-commits] [PATCH] D116974: [libc++] Add ranges::in_fun_result
Casey Carter via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Jan 17 14:12:20 PST 2022
CaseyCarter added inline comments.
================
Comment at: libcxx/include/__algorithm/in_fun_result.h:36
+ constexpr operator in_fun_result<_I2, _F2>() && {
+ return {std::move(in), std::move(fun)};
+ }
----------------
Shouldn't these be `_VSTD`-qualified?
================
Comment at: libcxx/include/algorithm:705
#include <__algorithm/includes.h>
+#include <__algorithm/in_fun_result.h>
#include <__algorithm/inplace_merge.h>
----------------
This should be before `in_in_result.h` on line 702.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D116974/new/
https://reviews.llvm.org/D116974
More information about the libcxx-commits
mailing list