From d1b558a5547332d7bebef70370e496546cc5c28c Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Mon, 15 Jun 2026 08:21:50 -0400 Subject: [PATCH] Fix refptr build warnings --- src/util/refptr.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/util/refptr.h b/src/util/refptr.h index 54b7847..7455a9e 100644 --- a/src/util/refptr.h +++ b/src/util/refptr.h @@ -8,12 +8,12 @@ template class refptr { public: - refptr(); - refptr(T * ptr); - refptr(const refptr & orig); - refptr & operator=(const refptr & orig); - refptr & operator=(T * ptr); - ~refptr(); + refptr(); + refptr(T * ptr); + refptr(const refptr & orig); + refptr & operator=(const refptr & orig); + refptr & operator=(T * ptr); + ~refptr(); T & operator*() const; T * operator->() const; bool isNull() const { return m_ptr == NULL; }