From 1c9fcbb387b2933c5985999fe5f28280befb23f6 Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Fri, 15 Feb 2019 19:29:06 -0500 Subject: [PATCH] Fix Linux compile --- indra/newview/llfolderview.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/indra/newview/llfolderview.cpp b/indra/newview/llfolderview.cpp index 020805e33..28c682544 100644 --- a/indra/newview/llfolderview.cpp +++ b/indra/newview/llfolderview.cpp @@ -2165,7 +2165,8 @@ void LLFolderView::doIdle() LLFavoritesOrderStorage::instance(); // Singu TODO: Favorites bar. BOOL collectFavoriteItems(LLInventoryModel::item_array_t&); - collectFavoriteItems(LLInventoryModel::item_array_t()); + LLInventoryModel::item_array_t items; + collectFavoriteItems(items); LL_RECORD_BLOCK_TIME(FTM_INVENTORY);