Files
Aerofoil/PortabilityLayer/PLHandle.cpp

10 lines
174 B
C++
Raw 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
{
if (m_hdl)
PortabilityLayer::MemoryManager::GetInstance()->ReleaseHandle(m_hdl);
}