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);