(svn r10645) -Fix (r10644): file contents seems to be 3x there

pull/155/head
KUDr 17 years ago
parent 478e009ac6
commit 1f693e8ce8

@ -19,48 +19,3 @@ int32 SimpleCountedObject::Release()
}
return res;
}
/* $Id$ */
#include "../stdafx.h"
#include "countedptr.hpp"
int32 SimpleCountedObject::AddRef()
{
return ++m_ref_cnt;
}
int32 SimpleCountedObject::Release()
{
int32 res = --m_ref_cnt;
assert(res >= 0);
if (res == 0) {
FinalRelease();
delete this;
}
return res;
}
/* $Id$ */
#include "../stdafx.h"
#include "countedptr.hpp"
int32 SimpleCountedObject::AddRef()
{
return ++m_ref_cnt;
}
int32 SimpleCountedObject::Release()
{
int32 res = --m_ref_cnt;
assert(res >= 0);
if (res == 0) {
FinalRelease();
delete this;
}
return res;
}

Loading…
Cancel
Save