Kaydet (Commit) b55910d9 authored tarafından Caolán McNamara's avatar Caolán McNamara

why leak m_pImpl

üst 6022aab4
......@@ -84,12 +84,15 @@ namespace comphelper
//=========================================================================
//-------------------------------------------------------------------------
OModule::OModule()
:m_nClients( 0 )
,m_pImpl( new OModuleImpl )
: m_nClients(0)
, m_pImpl(new OModuleImpl)
{
}
OModule::~OModule() {}
OModule::~OModule()
{
delete m_pImpl;
}
//-------------------------------------------------------------------------
void OModule::registerClient( OModule::ClientAccess )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment