From 155b2dbec0408e03e1e200be3d02beb01e1f2bcc Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Sat, 5 Jul 2025 13:51:47 -0500 Subject: [PATCH] xo-reflect: provide xo::bp alias for xo::ref::borrow --- xo-refcnt/include/xo/refcnt/Refcounted.hpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/xo-refcnt/include/xo/refcnt/Refcounted.hpp b/xo-refcnt/include/xo/refcnt/Refcounted.hpp index bab9f1ba..13feed3d 100644 --- a/xo-refcnt/include/xo/refcnt/Refcounted.hpp +++ b/xo-refcnt/include/xo/refcnt/Refcounted.hpp @@ -13,11 +13,17 @@ namespace xo { namespace ref { template class intrusive_ptr; + + template + class Borrow; } template using rp = ref::intrusive_ptr; + template + using bp = ref::Borrow; + namespace ref { class Refcount;