Files

10 lines
173 B
C++
Raw Permalink Normal View History

2019-12-29 23:14:37 -05:00
#include "PLHandle.h"
#include "MemoryManager.h"
void THandleBase::Dispose() const
2019-12-29 23:14:37 -05:00
{
2020-07-03 04:59:40 -04:00
if (m_hdl)
2019-12-29 23:14:37 -05:00
PortabilityLayer::MemoryManager::GetInstance()->ReleaseHandle(m_hdl);
}