Files @ r7830:80ef221c9406
Branch filter:

Location: cpp/openttd-patchpack/source/src/misc/countedobj.cpp

glx
(svn r11380) -Revert (r11191, r11196): it worked, but broke cargo loading
/* $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;
}