summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/utilities/memory
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2017-02-17 08:37:03 +0000
committerEric Fiselier <eric@efcs.ca>2017-02-17 08:37:03 +0000
commit3c35491f02f79e71688ca4d2ca63c243e3e5b18c (patch)
tree8efdbba8b6ba41a4af3c408fad2a05be8aea41c2 /libcxx/test/std/utilities/memory
parentcb17fbb00b295afacd0d71198e3c7a0594d06c7d (diff)
downloadbcm5719-llvm-3c35491f02f79e71688ca4d2ca63c243e3e5b18c.tar.gz
bcm5719-llvm-3c35491f02f79e71688ca4d2ca63c243e3e5b18c.zip
Update all bug URL's to point to https://bugs.llvm.org/...
llvm-svn: 295434
Diffstat (limited to 'libcxx/test/std/utilities/memory')
-rw-r--r--libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.enab/enable_shared_from_this.pass.cpp4
-rw-r--r--libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared.pass.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.enab/enable_shared_from_this.pass.cpp b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.enab/enable_shared_from_this.pass.cpp
index 8d702c7ae43..5a0d9259c11 100644
--- a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.enab/enable_shared_from_this.pass.cpp
+++ b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.enab/enable_shared_from_this.pass.cpp
@@ -51,11 +51,11 @@ struct Bar : public Foo {
int main()
{
- { // https://llvm.org/bugs/show_bug.cgi?id=18843
+ { // https://bugs.llvm.org/show_bug.cgi?id=18843
std::shared_ptr<T const> t1(new T);
std::shared_ptr<T const> t2(std::make_shared<T>());
}
- { // https://llvm.org/bugs/show_bug.cgi?id=27115
+ { // https://bugs.llvm.org/show_bug.cgi?id=27115
int x = 42;
std::shared_ptr<Bar> t1(new Bar(42));
assert(t1->shared_from_this() == t1);
diff --git a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared.pass.cpp b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared.pass.cpp
index 8d782716b94..2a7ac9979d0 100644
--- a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared.pass.cpp
+++ b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared.pass.cpp
@@ -59,7 +59,7 @@ int main()
assert(p->get_char() == 'e');
}
- { // https://llvm.org/bugs/show_bug.cgi?id=24137
+ { // https://bugs.llvm.org/show_bug.cgi?id=24137
std::shared_ptr<Foo> p1 = std::make_shared<Foo>();
assert(p1.get());
std::shared_ptr<const Foo> p2 = std::make_shared<const Foo>();
OpenPOWER on IntegriCloud