summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorLynx Linden <lynx@lindenlab.com>2010-01-28 16:57:37 +0000
committerLynx Linden <lynx@lindenlab.com>2010-01-28 16:57:37 +0000
commit9a4d075f3b8ab1ccf760187beeb81f9bf17e69b1 (patch)
tree01bbbb36220214665675a9925a2ced2f4141c88f /indra
parentfee014bd82cd78f07bcc88c45109a1ea2b2eee24 (diff)
Fix signed/unsigned comparison build failure on Windows for
lllocationhistory.cpp
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/lllocationhistory.cpp2
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);
}
/*