[10690] Fixed *nix build problem after recent commits.

This commit is contained in:
VladimirMangos 2010-11-07 03:03:10 +03:00
parent bffc07e4bc
commit 2b98f699b7
5 changed files with 16 additions and 12 deletions

View file

@ -117,12 +117,8 @@ class MANGOS_DLL_DECL Grid
return i_container.template remove<SPECIFIC_OBJECT>(obj);
}
uint32 SetLastUpdateTimeAndReturnDiff(uint32 newtime)
{
uint32 realdiff = getMSTimeDiff(m_LastUpdateTime,newtime);
m_LastUpdateTime = newtime;
return realdiff;
}
uint32 GetLastUpdateTime() const { return m_LastUpdateTime; }
void SetLastUpdateTime(uint32 newtime) { m_LastUpdateTime = newtime; }
private: