diff options
author | Loren Shih <seraph@lindenlab.com> | 2010-02-01 13:46:22 -0500 |
---|---|---|
committer | Loren Shih <seraph@lindenlab.com> | 2010-02-01 13:46:22 -0500 |
commit | f0ee8af8ae832fc01aa5c79898efc72b822e40af (patch) | |
tree | 306dee01c37254c4b3b43eb7a9222c8167999017 | |
parent | 5d7c376332b090801b503d8dc154bb67771230d8 (diff) |
EXT-4816 : Fix coverty whine on break statement fallthrough
Can't fix the whine, but added a comment that the fallthrough is deliberate.
-rw-r--r-- | indra/newview/llinventorybridge.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index e04d3ec5a0..e8a4899a0b 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -4634,6 +4634,7 @@ void LLWearableBridge::buildContextMenu(LLMenuGL& menu, U32 flags) { case LLAssetType::AT_CLOTHING: items.push_back(std::string("Take Off")); + // Fallthrough since clothing and bodypart share wear options case LLAssetType::AT_BODYPART: if (get_is_item_worn(item->getUUID())) { |