nametag: Fix build error

This commit is contained in:
John Cote 2024-03-30 20:28:46 -04:00
parent 6d182ccb5e
commit ece766c598
No known key found for this signature in database
GPG Key ID: 2CBB7FE216D556FB
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
#define NAMETAG_REFCOUNT_HACK \
INLINE virtual int get_ref_count() const final { return ReferenceCount::get_ref_count(); }; \
INLINE virtual void ref() const final { ReferenceCount::ref(); }; \
INLINE virtual bool unref() const final { return ReferenceCount::unref(); };
INLINE virtual bool unref() const { return ReferenceCount::unref(); };
NotifyCategoryDecl(nametag, EXPCL_OTP, EXPTP_OTP);