diff options
| author | Igor Borovkov <iborovkov@productengine.com> | 2010-01-28 18:28:08 +0200 | 
|---|---|---|
| committer | Igor Borovkov <iborovkov@productengine.com> | 2010-01-28 18:28:08 +0200 | 
| commit | da08cc05af85ac334cabd943a5d9fcbcaa1500b6 (patch) | |
| tree | 4331d195aefa4442423e6cb22f61e5bcb272956f | |
| parent | f6fceac081a1f2d165679ce3eb233e97806cebe7 (diff) | |
fixed win build
--HG--
branch : product-engine
| -rw-r--r-- | indra/newview/lllocationhistory.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/lllocationhistory.cpp b/indra/newview/lllocationhistory.cpp index f494f7d7c1..47139758e5 100644 --- a/indra/newview/lllocationhistory.cpp +++ b/indra/newview/lllocationhistory.cpp @@ -62,7 +62,7 @@ void LLLocationHistory::addItem(const LLLocationHistoryItem& item) {  	{  		mItems.erase(mItems.begin(), mItems.end()-max_items);  	} -	llassert(mItems.size() <= max_items); +	llassert((S32) mItems.size() <= max_items);  }  /* | 
