Fix signed/unsigned comparison build failure on Windows for
lllocationhistory.cppmaster
parent
fee014bd82
commit
9a4d075f3b
|
|
@ -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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in New Issue