[libcxx-commits] [PATCH] D92190: [libc++] fix std::sort(T**, T**)
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Nov 27 07:09:08 PST 2020
ldionne requested changes to this revision.
ldionne added a comment.
This revision now requires changes to proceed.
CI isn't passing in C++03 mode.
================
Comment at: libcxx/test/std/algorithms/alg.sorting/alg.sort/sort/sort.pass.cpp:138-143
+ constexpr int array_size = 10;
+ const int v[array_size] {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
+ const int *pv[array_size];
+ for (int i = 0; i < array_size; i++) {
+ pv[i] = &v[array_size - 1 - i];
+ }
----------------
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D92190/new/
https://reviews.llvm.org/D92190
More information about the libcxx-commits
mailing list