Fix signed/unsigned comparison build failure on Windows for

lllocationhistory.cpp
master
Lynx Linden 2010-01-28 16:57:37 +00:00
parent fee014bd82
commit 9a4d075f3b
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
/*