From 065697540f241a05be31a851c850ce40ff047897 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Sat, 5 Jul 2025 16:17:03 -0500 Subject: [PATCH] xo-refcnt: xo::ref::brw -> xo::bp --- xo-refcnt/utest/intrusive_ptr.test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xo-refcnt/utest/intrusive_ptr.test.cpp b/xo-refcnt/utest/intrusive_ptr.test.cpp index 7bc931da..e2f94f84 100644 --- a/xo-refcnt/utest/intrusive_ptr.test.cpp +++ b/xo-refcnt/utest/intrusive_ptr.test.cpp @@ -129,7 +129,7 @@ namespace xo { REQUIRE(p2->reference_counter() == 1); /* can borrow a non-null intrusive-ptr */ - brw p1_brw = p1.borrow(); + bp p1_brw = p1.borrow(); REQUIRE(p1_brw.get() == p1.get()); @@ -139,7 +139,7 @@ namespace xo { REQUIRE(p1.get()->reference_counter() == 1); /* copying borrowed pointer does not touch refcount */ - brw p1_brw2 = p1_brw; + bp p1_brw2 = p1_brw; REQUIRE(ctor_count == cc + 2); REQUIRE(dtor_count == dc);