From 683847a2336c7ac9ed38261883baac14ada2eca9 Mon Sep 17 00:00:00 2001 From: XenHat Date: Mon, 11 May 2026 11:26:45 -0400 Subject: [PATCH] Fix building RelWithDebInfoFS_Open due to a typo Signed-off-by: XenHat --- indra/llinventory/llsettingsbase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llinventory/llsettingsbase.cpp b/indra/llinventory/llsettingsbase.cpp index e669ba108d7..a1e546d55a7 100644 --- a/indra/llinventory/llsettingsbase.cpp +++ b/indra/llinventory/llsettingsbase.cpp @@ -764,7 +764,7 @@ void LLSettingsBlender::update(const LLSettingsBase::BlendFactor& blendf) F64 LLSettingsBlender::setBlendFactor(const LLSettingsBase::BlendFactor& blendf_in) { LLSettingsBase::TrackPosition blendf = (F32)blendf_in; - llassert(!isnan(blendf)); + llassert(!llisnan(blendf)); if (blendf >= 1.0) { triggerComplete();