Skip to content

Commit bb6480e

Browse files
update link in comment
Co-authored-by: Nikolas Klauser <[email protected]>
1 parent 2da8845 commit bb6480e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/test/benchmarks/exception_ptr.bench.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ void bm_make_exception_ptr(benchmark::State& state) {
1919
BENCHMARK(bm_make_exception_ptr)->ThreadRange(1, 8);
2020

2121
static bool exception_ptr_moves_copies_swap(std::exception_ptr p1) {
22-
// Taken from https://github.com/llvm/llvm-project/issues/44892
22+
// Taken from https://llvm.org/PR45547
2323
std::exception_ptr p2(p1); // Copy constructor
2424
std::exception_ptr p3(std::move(p2)); // Move constructor
2525
p2 = std::move(p1); // Move assignment

0 commit comments

Comments
 (0)