Finally replaced the ">" with "<" in LifetimeTracker

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@140 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
aandrei 2004-09-22 20:30:44 +00:00
parent 032435692c
commit f0620e3c6e

View file

@ -51,7 +51,7 @@ namespace Loki
static bool Compare(const LifetimeTracker* lhs,
const LifetimeTracker* rhs)
{
return lhs->longevity_ > rhs->longevity_;
return lhs->longevity_ < rhs->longevity_;
}
private: