diff options
| author | Lynx Linden <lynx@lindenlab.com> | 2010-01-28 16:57:37 +0000 | 
|---|---|---|
| committer | Lynx Linden <lynx@lindenlab.com> | 2010-01-28 16:57:37 +0000 | 
| commit | 9a4d075f3b8ab1ccf760187beeb81f9bf17e69b1 (patch) | |
| tree | 01bbbb36220214665675a9925a2ced2f4141c88f | |
| parent | fee014bd82cd78f07bcc88c45109a1ea2b2eee24 (diff) | |
Fix signed/unsigned comparison build failure on Windows for
lllocationhistory.cpp
| -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..df93930d33 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);  }  /* | 
