Skip to content

Commit

Permalink
Remove unnecessary template parameter in destructor. Fixes #487
Browse files Browse the repository at this point in the history
  • Loading branch information
zrax committed May 30, 2024
1 parent 6467c2c commit 513e03c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyc_object.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class PycRef {
obj.m_obj = nullptr;
}

~PycRef<_Obj>()
~PycRef()
{
if (m_obj)
m_obj->delRef();
Expand Down

0 comments on commit 513e03c

Please sign in to comment.