From 9dfb6e4740211796745014f8d0d97368544d553f Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Mon, 23 Feb 2026 22:37:06 -0500 Subject: [PATCH] Rename rcp_root() to rcp_managed_root() --- include/rcp.h | 2 +- test/tests.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/rcp.h b/include/rcp.h index d5314dd..9876e24 100644 --- a/include/rcp.h +++ b/include/rcp.h @@ -96,7 +96,7 @@ public: } }; -#define rcp_root(classname) \ +#define rcp_managed_root(classname) \ public: \ void rcp_inc() const \ { \ diff --git a/test/tests.cpp b/test/tests.cpp index ded36b2..0da1698 100644 --- a/test/tests.cpp +++ b/test/tests.cpp @@ -8,7 +8,7 @@ static int myderived_destruct; class MyBase { - rcp_root(MyBase); + rcp_managed_root(MyBase); protected: MyBase(int x, int y)