More C++11 cleanups, mostly from alchemy
This commit is contained in:
@@ -91,7 +91,6 @@
|
||||
#include "rlvhandler.h"
|
||||
#include "rlvlocks.h"
|
||||
// [/RLVa:KB]
|
||||
#include <boost/foreach.hpp>
|
||||
|
||||
// Marketplace outbox current disabled
|
||||
#define ENABLE_MERCHANT_OUTBOX_CONTEXT_MENU 1
|
||||
@@ -2498,7 +2497,7 @@ BOOL LLFolderBridge::dragCategoryIntoFolder(LLInventoryCategory* inv_cat,
|
||||
LLInventoryModel::item_array_t items;
|
||||
model->collectDescendents(cat_id, cats, items, LLInventoryModel::EXCLUDE_TRASH);
|
||||
LLInventoryObject::const_object_list_t citems;
|
||||
BOOST_FOREACH(LLPointer<LLViewerInventoryItem> item, items)
|
||||
for (LLPointer<LLViewerInventoryItem> item : items)
|
||||
{
|
||||
citems.push_back(item.get());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user