We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2da8845 commit bb6480eCopy full SHA for bb6480e
libcxx/test/benchmarks/exception_ptr.bench.cpp
@@ -19,7 +19,7 @@ void bm_make_exception_ptr(benchmark::State& state) {
19
BENCHMARK(bm_make_exception_ptr)->ThreadRange(1, 8);
20
21
static bool exception_ptr_moves_copies_swap(std::exception_ptr p1) {
22
- // Taken from https://github.com/llvm/llvm-project/issues/44892
+ // Taken from https://llvm.org/PR45547
23
std::exception_ptr p2(p1); // Copy constructor
24
std::exception_ptr p3(std::move(p2)); // Move constructor
25
p2 = std::move(p1); // Move assignment
0 commit comments