From f75f556d99da118703f7acefdd0678242527c9f6 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Sat, 5 Jul 2025 13:55:00 -0500 Subject: [PATCH] use xo::bp instead of xo::ref::brw --- utest/intrusive_ptr.test.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/utest/intrusive_ptr.test.cpp b/utest/intrusive_ptr.test.cpp index 78e3181a..7bc931da 100644 --- a/utest/intrusive_ptr.test.cpp +++ b/utest/intrusive_ptr.test.cpp @@ -9,7 +9,6 @@ namespace xo { using xo::ref::Refcount; using xo::ref::Borrow; - using xo::ref::brw; using xo::ref::intrusive_ptr_refcount; using xo::ref::intrusive_ptr_add_ref; using xo::ref::intrusive_ptr_release; @@ -71,8 +70,8 @@ namespace xo { intrusive_ptr_release(nullptr); /* can borrow a null intrusive_ptr */ - brw p1_brw = p1.borrow(); - brw p2_brw = p2.borrow(); + bp p1_brw = p1.borrow(); + bp p2_brw = p2.borrow(); REQUIRE(p1_brw.get() == nullptr); REQUIRE(p1_brw.operator->() == nullptr);