Fix unused variable breaking Mac builds

master
Beq 2025-09-08 16:13:04 +01:00
parent 7766a98d11
commit bbdcc2ca31
1 changed files with 1 additions and 1 deletions

View File

@ -635,7 +635,7 @@ void RlvGiveToRLVTaskOffer::doneIdle()
void RlvGiveToRLVTaskOffer::onDestinationCreated(const LLUUID& idDestFolder, const std::string& strName)
{
if (const LLViewerInventoryCategory* pTarget = (idDestFolder.notNull()) ? gInventory.getCategory(idDestFolder) : nullptr)
if (idDestFolder.notNull() ? gInventory.getCategory(idDestFolder) : nullptr)
{
moveAndRename(m_Folders.front(), idDestFolder, strName, new LLBoostFuncInventoryCallback(boost::bind(&RlvGiveToRLVTaskOffer::onOfferCompleted, this, _1)));
}