Rename rcp_root() to rcp_managed_root()

This commit is contained in:
Josh Holtrop 2026-02-23 22:37:06 -05:00
parent 53b2247432
commit 9dfb6e4740
2 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ public:
}
};
#define rcp_root(classname) \
#define rcp_managed_root(classname) \
public: \
void rcp_inc() const \
{ \

View File

@ -8,7 +8,7 @@ static int myderived_destruct;
class MyBase
{
rcp_root(MyBase);
rcp_managed_root(MyBase);
protected:
MyBase(int x, int y)