summaryrefslogtreecommitdiff
path: root/indra/newview/rlvhelper.cpp
diff options
context:
space:
mode:
authorKitty Barnett <develop@catznip.com>2024-10-02 00:34:09 +0200
committerErik Kundiman <erik@megapahit.org>2025-05-11 16:29:41 +0800
commitc996cdbe68c92313c311b9c8696ea3bd3ae69446 (patch)
tree546ac6e4db53aacda70972755eeeb1e94e744b12 /indra/newview/rlvhelper.cpp
parentab89ea5e209a91689e06352e73635c735015ddbf (diff)
Remove unneeded RLV_VERIFY + undefine accidental RLV_DEBUG define (should fix Linux build)
Diffstat (limited to 'indra/newview/rlvhelper.cpp')
-rw-r--r--indra/newview/rlvhelper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/rlvhelper.cpp b/indra/newview/rlvhelper.cpp
index 988fc9ca8b..7cb1473c8c 100644
--- a/indra/newview/rlvhelper.cpp
+++ b/indra/newview/rlvhelper.cpp
@@ -57,7 +57,7 @@ BehaviourDictionary::BehaviourDictionary()
// Populate mString2InfoMap (the tuple <behaviour, type> should be unique)
for (const BehaviourInfo* bhvr_info_p : mBhvrInfoList)
{
- RLV_VERIFY(mString2InfoMap.insert(std::make_pair(std::make_pair(bhvr_info_p->getBehaviour(), static_cast<EParamType>(bhvr_info_p->getParamTypeMask())), bhvr_info_p)).second);
+ mString2InfoMap.insert(std::make_pair(std::make_pair(bhvr_info_p->getBehaviour(), static_cast<EParamType>(bhvr_info_p->getParamTypeMask())), bhvr_info_p));
}
// Populate m_Bhvr2InfoMap (there can be multiple entries per ERlvBehaviour)