diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/hrtf.cpp | 2 | ||||
-rw-r--r-- | core/hrtf.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/hrtf.cpp b/core/hrtf.cpp index 383d4340..2b3fdc13 100644 --- a/core/hrtf.cpp +++ b/core/hrtf.cpp @@ -1433,7 +1433,7 @@ void HrtfStore::add_ref() TRACE("HrtfStore %p increasing refcount to %u\n", decltype(std::declval<void*>()){this}, ref); } -void HrtfStore::release() +void HrtfStore::dec_ref() { auto ref = DecrementRef(mRef); TRACE("HrtfStore %p decreasing refcount to %u\n", decltype(std::declval<void*>()){this}, ref); diff --git a/core/hrtf.h b/core/hrtf.h index 193576e7..0c8d2a49 100644 --- a/core/hrtf.h +++ b/core/hrtf.h @@ -42,7 +42,7 @@ struct HrtfStore { const ubyte2 *delays; void add_ref(); - void release(); + void dec_ref(); DEF_PLACE_NEWDEL() }; |